Archive for the 'DotNet' Category

Restoring WSH File Associations

Sunday, October 21st, 2007

I have both Visual Studio .NET 2005 Express as well as Visual Studio .NET 2003 installed on my PC. I just installed Service Pack 1 for VS 2003. For some reason this decided to take over file associations for things like .VBS. Instead of launching the Windows Scripting Host, it launches Visual Studio .NET 2003.
(more…)

Where’s my Info Balloon?

Tuesday, May 17th, 2005

I’ve recently discovered a problem with my dotNet program. Well, as I found out, it may not be a problem with my program. I display a maximized, borderless window (#1) and then transition to a normal, sizable bordered window (#2), which is also maximized. The borderless window, when maximized, covers the taskbar, which is fine. However window #1 creates window #2, which apparently also gives window #2 a higher z-order than the task bar. When window #2 finishes loading, it sends an event to window #1, instructing it to close.
(more…)

Using integers in a C++ ArrayList

Sunday, March 20th, 2005

In this day and age, creating a dynamic list of integers seems like it should be an easy task. I set out to figure out how to do this using the ArrayList class in DotNet, I actually found it to be more of a challenge than it should have been.
(more…)