This is a stupid Gotcha, like most Gotchas it is just irritating and something that frankly could have been designed better. The Gripe If you […]
Simple Class Creator
05/25/2014 UPDATE: I moved the code to a different project. I have made a number of changes since 2012. I posted an article on code […]
Very Old Samsung 2 GB Drive the Sound of Old Tech
So I was dusting off some old equipment and going through boxes of old crap and I found 6 IDE hard drives that brought back […]
SQL Server: String or binary data would be truncated.
Msg 8152, Level x, State x, Line x String or binary data would be truncated. What does this mean? This is the equivalent of SQL […]
SATA Drive Dynamic Invalid Disk
If you are getting a funky error while mounting a SATA drive to the effect of: “Dynamic Disk Invalid” Then check out this link: http://windows7forums.com/windows-7-support/3906-dynamic-disk-invalid.html […]
Visio 2010 Activation Error 0x80072EFD
This is not a terribly useful post, it is more of a piece of advice. If you have the option to activate this software by […]
DataGridView Loses Formatting and Columns After Setting DataSource a Second Time
Problem This was particularly annoying. If you have a DataGridView you are working with, you have setup the DataGridView through the designer and you have […]
Windows Form Designer File Hell: Object reference not set to an instance of an object
I spent 2 hours trying to figure out why a form I was working on was telling me that there was something wrong with a […]
Programmer Breakfast
I don’t have a good time waking up in the morning. I am usually a zombie and I grunt to communicate until my vocal cords […]
My.Request Equivalent in C#
The Gotcha When moving VB.Net code to C# code that uses the My namespace such as “My.Request” the equivalent for you to use is “HttpContext.Current.Request”. […]