Renaming projects in Visual Studio is a pain in the @$$ and can be really time consuming if you don’t know what you’re doing. Visual Studio 2008 doesn’t come with…Renaming projects in Visual Studio is a pain in the @$$ and can be really time consuming if you don’t know what you’re doing. Visual Studio 2008 doesn’t come with a…
Read the rest...Category Archives: Visual Studio
Adding comments to custom controls in the win form designer
As I was making a custom win form control I saw that my standard XML-comments wasn’t showing for my events in the win form designer. As I don’t use win…As I was making a custom win form control I saw that my standard XML-comments wasn’t showing for my events in the win form designer. As I don’t use win forms…
Read the rest...C# Setup project
To distribute a a project smoothly there is a project type in Visual Studio called Setup with which you can create an installation package with ease. I’m going to show…To distribute a a project smoothly there is a project type in Visual Studio called Setup with which you can create an installation package with ease. I’m going to show you…
Read the rest...The difference between build and rebuild
Sometimes you wonder about the stuff that resides in the Visual Studio menus. For example, what’s the difference between Build and Rebuild, and when do you you which one? I…Sometimes you wonder about the stuff that resides in the Visual Studio menus. For example, what’s the difference between Build and Rebuild, and when do you you which one? I haven’t…
Read the rest...C#: backtracking while debugging
Sometimes when you debug you realize that it would be very handy to step back a couple of lines. Until recently I didn’t know how to do this (not something…Sometimes when you debug you realize that it would be very handy to step back a couple of lines. Until recently I didn’t know how to do this (not something you…
Read the rest...C#: conditional debugging
Sometimes when you loop through large amounts of data you want to add a breakpoint which won’t necessarily stop in every loop but rather when a specific value pops up….Sometimes when you loop through large amounts of data you want to add a breakpoint which won’t necessarily stop in every loop but rather when a specific value pops up. One…
Read the rest...