Archive forNovember, 2009

Saving and transferring customisations

I got an email from a reader last week asking about saving customisations in Visual Studio: Hi Bill I read an excellent article by you http://visualstudiomagazine.com/Articles/2007/12/01/Customize-the-VB-IDE.aspx?Page=1 Just wondering if you know of a way to export those customisations so I can set up my computer at work restore after HDD fails and share my favorite […]

Click here to read more »

IntPtr gets operators !!!

This seems so incredibly long overdue, but at last as of .NET 4, IntPtr has + and – operators added to it !! This means you can now easily write code such as :     Dim ptr As IntPtr     . . . .     ptr += 4   this is great when dealing with […]

Click here to read more »