This was a more puzzling error that I have had to deal with in a long time. Every time I started up my windows forms […]
How to convert a String (Char Array) to List of Int (ASCII Decimal Equivalent)
I think it confuses people that single characters are interchangeable with byte and int, so here I am telling you that they are interchangeable up to an […]
WSE: You Cannot Return Custom Exceptions
I answered this on StackOverflow.com here: http://stackoverflow.com/questions/138477/using-own-exceptions-in-wse-not-only-soapexception/9320072#9320072
Windows Services and Creating a Setup Project
I want to create a constructive post on this with a full explanation on how to create a setup project for anything, my main example […]
Extension Methods: Straight to the Point!
I kept looking at many articles on extension methods and for some reason I couldn’t get mine to work. It then dawned on me that […]
Adventures In Web Service and Remoting Server Craziness
I don’t think there are that many people out there that still have to deal with more than one .Net Framework, but I have to […]
Storing null in a Column will compile, but will cause run time exception
You can legally store a null in a column from a data row and the code will compile. Don’t do this thought because it will […]
Background goes white on post back
Have you ever been working on a web form or aspx page, then on post back the background color just turns white? That is due […]
++i vs. i++, YES they are different!
For this first test you will see that there isn’t a difference, it is working differently, but you cannot tell the difference in this example: […]
DataTable.Compute() woes
So if you have ever seen this goddamn error before, then you might have been tempted to pull your hair out while screaming, “WHY WON’T […]