Visual Studio

There are 2 entries for the tag Visual Studio

Visual Studio 2008 template for Prototype console application

There have been several occurrences where I needed to have something quick UI, to check some set of classes. Building a whole Windows Forms or WPF application seemed to be overkill, specially when I will not be responsible for building UI later, or application will not need UI at all. So what we usually do? Right, create a command line utility, than another one and another one.. Most of them look exactly the same. So some time ago I have created a Visual Studio project template, that will contain all I need in such console applications, and all...

When User Control or Form doesn't open in Form Editor

I was working on some project in Visual Studio 2003 with many user controls in it and suddenly, I found that I cannot open any control with Forms Editor. When I double-click on the file, it opens with CSharp code editor only. I'm still unsure how did this happen, but after looking at ".csproj" file in notepad, I have found how to fix this. Each file in .NET project is described in separate "File" node inside project file (or "Compile" node in Visual Studio 2005/2008), like in the screenshot below: Note, the SubType attribute -...