Top "Visual-studio-2005" questions

Visual Studio 2005 is a version of Microsoft's Visual Studio integrated development environment product line for .NET-based and C++ development.

Configure Visual Studio to use UNIX line endings

We would like to use Visual Studio 2005 to work on a local copy of an SVN repository. This local copy …

visual-studio visual-studio-2005 line-endings end-of-line
error LNK2005: new and delete already defined in LIBCMTD.lib(new.obj)

I have a Visual studio 2005 solution that has two projects. One is a static library and the other is a …

c++ visual-studio visual-studio-2005 lnk2005
Where is Visual Studio 2005 Express?

I'm working on a project that requires Visual Studio 2005 and I've been trying to find a legitimate download site for …

c# visual-studio-2005 download
configurationManager does not exist in the namespace System.Configuration

I have used the following namespace to connect my project to the sql server: using System.Configuration; and also used …

c# sql-server visual-studio-2005
How does the "Using" statement translate from C# to VB?

For example: BitmapImage bitmap = new BitmapImage(); byte[] buffer = GetHugeByteArray(); // from some external source using (MemoryStream stream = new MemoryStream(buffer, false)) { …

c# .net vb.net visual-studio-2005 .net-2.0
F12 no longer works in Visual Studio

This is driving me crazy. Ever since I installed ReSharper 4, F12 no longer seems to work. If you look at …

visual-studio-2005 keyboard-shortcuts
error C2011: '' : 'class' type redefinition

One of the header files is as follows - #include "stdafx.h" class AAA { public: std::string strX; std::string …

c++ class visual-studio-2005
Export all symbols when creating a DLL

With VS2005, I want to create a DLL and automatically export all symbols without adding __declspec(dllexport) everywhere and without …

c++ windows visual-studio visual-studio-2005
Where do I control the behavior of the "X" close button in the upper right of a winform?

I'm venturing into making my VB.NET application a little better to use by making some of the forms modeless. …

vb.net winforms visual-studio-2005 modeless
Search XML file for nodes with specific attribute value in .NET 2

I found answers for searching XML nodes using LINQ, but I am limited to C# with .NET 2. I want to …

c# xpath visual-studio-2005 .net-2.0