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.

How do you create a foreign key relationship in a SQL Server CE (Compact Edition) Database?

Visual Studio 2005 doesn't provide an interface for creating relationships between tables in a SQL Server CE database (I'm using version 3.0) …

database visual-studio sql-server-ce visual-studio-2005
How to generate List<String> from SQL query?

If I have a DbCommand defined to execute something like: SELECT Column1 FROM Table1 What is the best way to …

c# sql list visual-studio-2005 dbcommand
Panel.Dock Fill ignoring other Panel.Dock setting

If you create a panel on a form and set it to Dock=Top and drop another panel and set …

c# .net winforms visual-studio-2005
How do I see a C/C++ source file after preprocessing in Visual Studio?

Let's say I have a source file with many preprocessor directives. Is it possible to see how it looks after …

c++ c debugging visual-studio-2005 c-preprocessor
Is there a list of Visual Studio environment variables?

Possible Duplicate: Link to all Visual Studio $ variables Visual Studio has a lot of environment variables like $(TargetFileName) but I …

visual-studio visual-studio-2008 visual-studio-2005
Attach Debugger to IIS instance

I have IIS 5.1 on a XP machine, and visual studio 2005. How do I go about attaching my debugger to IIS …

c# asp.net visual-studio-2005 debugging
Signed/unsigned comparisons

I'm trying to understand why the following code doesn't issue a warning at the indicated place. //from limits.h #define …

c++ visual-studio-2005 comparison unsigned signed
How do you tell the Visual Studio project type from an existing Visual Studio project

Using Visual Studio 2005. Is there anything in the .sln or .vcproj files (or anywhere else) that defines the project type / …

visual-studio-2005
Visual Studio, Find and replace, regex

I am trying to replace all the #include "whatever.h" with #include <whatever.h> using find and replace …

regex visual-studio-2005 replace