Home > Blogs
Browse by Tags
Home > Blogs
Yesterday I blogged about a class I came across in the SystemInformation namespace called PowerStatus. It was working great for me until I tested it on a machine with three UPS's plugged into it. The three UPS's were not for that machine of course :)
Read More...
The project I am working on right now is a software factory that will eventually allow it's users to build software that controls robots and other devices in a laboratory. Today I wrote a service that monitors the power on the machine it's running. The
Read More...
You can use the DataSource attribute to call your TestMethod multiple times with different data each time. Lets say for example I have an order details table like the one in Northwind. OrderId ProductId UnitPrice Quantity Discount In your application
Read More...
Here is something you may not have noticed before. I'm sure you have utilized the following code to create an event handler in your code. VB.NET AddHandler MsgArrivedEvent, AddressOf My_MsgArrivedCallback C# MsgArrivedEvent += new MsgArrivedEventHandler(My_MsgArrivedEventCallback);
Read More...
This blog entry is not a battle or comparison of the two languages. I love both of them the same. What I did want to pass along is this great page I found. Actually I think someone may have told me about it but I can't remember who, if someone did point
Read More...
Here is one of those posts I make because I keep forgetting how to do it. Now that I have posted it I won't forget. Perhaps someone else will be searching for this little code snipit and I will have helped them out. :) If you have an Infragistics Grid
Read More...
There are a bunch of ObjectSharp people and Friends of ObjectSharp at Tech Ed this week. Their Blogs are making good reading. I feel like I'm there. If you wish you had gone to Tech Ed or wonder what you are missing. Check out the Blogs below. ObjectSharp
Read More...
Regular expressions are a very powerful tool for validating or parsing a string. I don't claim to be an expert in the use of Regular expressions by any means. But I have used them with great success on a number of occasions. They are very useful. I have
Read More...
I'm working on a smart client application at the moment. One of the forms, under certain conditions, launches a wizard to gather information from the user. From the users perspective they open the form and the wizard displays. If the user hits cancel,
Read More...
I have an issue with the DataTable object. Although I think it's a cultural thing. Some people I talk to don't seem to bothered by it. I find it very annoying, mostly because it would have been so easily avoided. So whats the problem? When a DataRow is
Read More...