Installed Visual Studio Orca Beta1 Express edition next to my Visual Studio 2005 this week and the first error i encountered was: " The base class includes the field '[controlname]', but its type (System.Web.UI.HtmlControls.HtmlGenericControl) is not compatible with the type of control ...
If you're like me, you love the TableAdapters feature of Visual Studio 2005. Simply right-click on the App_Code folder, add a new item, and choose DataSet. Then pick a database to model it against, and BAM! A Strongly typed data object is built for you on the fly. This model enhances portability for...
This article shows how a project implementer in Visual Studio 2005 can handle the " Show All Files " command to show/hide nodes (that may or may not represent files on disk). Before I proceed, it's important to mention that, in my projects, I don't use the MPF classes. I've developed my own classes that...
While using the Visual Studio core editor as your text editor in a language service is a known and straightforward procedure, creating a designer has been totally left in the responsibility of the language service or editor implementer. In this quest, the most wanted designer is the Windows Forms Designer...
Since .vssettings files were first introduced in Visual Studio 2005, I've seen many questions about how the Import/Export settings mechanism can be controlled through code. This was something that bothered me too since VS2005 Beta 1 but it didn't take long till I figure out the solution. I have now created...