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

learn more… | top users | synonyms (2)

73
votes
8answers
23k views

C/C++ source file after preprocessing

Let's say I have a source file with many preprocessor directives . Is it possible to see how it looks after the preprocessor is done with it ?
41
votes
8answers
21k views

How to setup Google C++ Testing Framework (gtest) on Visual Studio 2005

It is not documented on the web site and people seems having problem setting up the framework. Can someone please show step by step introduction to a sample project setup.
39
votes
4answers
13k views

Automatically stop Visual C++ 2008 build at first compile error?

I know I can compile individual source files, but sometimes -- say, when editing a header file used by many .cpp files -- multiple source files need to be recompiled. That's what Build is for. ...
27
votes
11answers
70k views

The name 'controlname' does not exist in the current context

I have a web application that I'm working on (ASP.NET2.0 with C#, using VS2005). Everything was working fine, and all of a sudden I get the error: Error 1 The name 'Label1' does not exist in the ...
19
votes
8answers
11k views

Visual Studio 2005 Intellisense stopped working after ReSharper installation

I installed the ReSharper evaluation version and uninstalled it. Afterwards Visual Studio's Intellisense stopped working. I have restarted computer but I still have this problem. Can anyone please ...
16
votes
6answers
13k views

Using HashSet in C# 2.0, compatible with 3.5

I really want to use hashsets in my program. Using a dictionary feels ugly. I'll probably start using VS2008 with .Net 3.5 some day, so my ideal would be that even though I can't (or can I?) use ...
14
votes
3answers
25k views

How do I print to the debug output window in a Win32 app?

I've got a win32 project that I've loaded into Visual Studio 2005. I'd like to be able to print things to the Visual Studio output window, but I can't for the life of me work out how. I've tried ...
26
votes
4answers
7k views

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 UINT_MAX 0xffffffff /* maximum unsigned int value */ #define INT_MAX ...
2
votes
6answers
4k views

DataTable visualizer disappeared from my Visual Studio

A while ago I noticed I don't have a magnifying-glass next to my datatables. I used to have it, and somehow, sometime, it disappeared... Has anyone seen this happen? Do you know how to help me view my ...
31
votes
10answers
39k views

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 Visual Studio 2005 Express, but it seems like Microsoft only wants people to ...
51
votes
5answers
18k views

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 its Dock=Fill, it may fill the entire form, ignoring the first panel. Changing the tab order does nothing.
8
votes
5answers
8k views

“Step over” when debugging multithreaded programs in Visual Studio

One thing that annoys me when debugging programs in Visual Studio (2005 in my case) is that when I use "step over" (by pressing F10) to execute to the next line of code, I often end up reaching that ...
20
votes
3answers
10k views

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 hand-creating .def files. Is threre a way to do this?
13
votes
3answers
21k views

What is the difference between Release and Debug modes in Visual Studio? [duplicate]

Possible Duplicate: Debug/Release difference What is the difference between Release and Debug modes in Visual Studio while building a project?
45
votes
15answers
7k views

Database Deployment Strategies (SQL Server)

I am looking for a way to do daily deployments and keep the database scripts in line with releases. Currently, we have a fairly decent way of deploying our source, we have unit code coverage, ...
28
votes
10answers
6k views

What are some reasons a Release build would run differently than a Debug build

I have a Visual Studio 2005 C++ program that runs differently in Release mode than it does in Debug mode. In release mode, there's an (apparent) intermittent crash occurring. In debug mode, it ...
29
votes
4answers
31k views

Why can't I debug from Visual Studio 2005 after installing IE8?

I've just installed IE8 (final) and restarted. I can no longer debug Web Application Projects using Visual Studio 2005 on Windows Server 2003 Enterprise R2. I get the message "Internet Explorer cannot ...
16
votes
15answers
6k views

How to improve link performance for a large C++ application in VS2005

We have fairly large C++ application which is composed of about 60 projects in Visual Studio 2005. It currently takes 7 minutes to link in Release mode and I would like to try to reduce the time. Are ...
12
votes
5answers
5k views

Determine Assembly Version during a Post Build Event?

Let's say I wanted to create a static text file which ships with each release. I want the file to be updated with the version number of the release (as specified in AssemblyInfo.cs), but I don't want ...
13
votes
5answers
4k views

Formatting - at once - all the files in a Visual Studio project

I am interested in formatting all the files in a Visual Studio (ver. 2005) project all at once. Any idea? Currently, there is a way to format a single document by doing something like ...
4
votes
12answers
3k views

Breakpoint not hooked up when debugging in VS.Net 2005

Been running into this problem lately... When debugging an app in VS.Net 2005, breakpoints are not connected. Error indicates that the compiled code is not the same as the running version and ...
14
votes
12answers
19k views

Weird MSC 8.0 error: “The value of ESP was not properly saved across a function call…”

We recently attempted to break apart some of our Visual Studio projects into libraries, and everything seemed to compile and build fine in a test project with one of the library projects as a ...
4
votes
5answers
1k views

Visual Studio 2005 Shortcuts

I'm trying to bind the following shortcut: Ctrl + W to close tabs How can you customize VS to add/change shortcuts? Also, what are the most useful shortcuts you guys have found?
130
votes
16answers
83k views

Visual Studio setup problem - 'A problem has been encountered while loading the setup components. Canceling setup.'

I've had a serious issue with my Visual Studio 2008 setup. I receive the ever-so-useful error 'A problem has been encountered while loading the setup components. Canceling setup.' whenever I try to ...
104
votes
6answers
13k views

Visual Studio search stops working for “Entire Solution”

Somehow Visual Studio search has stopped working for me. Any time I search "Entire Solution" for some text i get this result: Find all "[What ever i was searching for]", Subfolders, Find Results ...
15
votes
3answers
9k views

Resolving “Validation (): Element ‘xxxx’ is not supported” warning in Visual Studio 2005/2008

Over the last couple of days I started getting the following validation warning (green squiggly line at design time) in a Visual Studio 2008 ASP.NET WebForms project: Validation (): Element ...
7
votes
2answers
4k views

Persisting app.config variables in updates via Click once deployment

Every time a new update is released for an application with click once, the variables in the app.config file are destroyed <userSettings> <app.My.MySettings> <setting ...
10
votes
8answers
25k views

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 executable used to test the features in the static library. The static library uses MFC. I got ...
10
votes
10answers
9k views

How to programatically change a project's product version?

Here is my problem: I have several deployment projects. In order to deploy an application, I need to do several tasks, one of them is to change each deployment project's product version and product ...
9
votes
11answers
17k views

Visual Studio 2005 vs 2008 - What are the benefits?

What are the benefits of upgrading from Visual Studio 2005 to 2008? Any thoughts on whether it's worth the jump, or is it better to wait for whatever's coming next?
6
votes
4answers
15k views

What happens to an STL iterator after erasing it in VS, UNIX/Linux?

Please consider the following scenario: map(T,S*) & GetMap(); //Forward decleration map(T, S*) T2pS = GetMap(); for(map(T, S*)::iterator it = T2pS.begin(); it != T2pS.end(); ++it) { ...
1
vote
1answer
524 views

web application projects v.s. web site projects

I am reading from the following link, http://reddnet.net/code/asp-net-web-site-vs-web-application-project-part-2/ My two confusions, What is the so-called issue "No control over your namespaces" ...
17
votes
2answers
22k views

Changing a Visual Studio C# project from x86 to Any CPU

I am working on some C# projects with Visual Studio 2005, and I am trying to change the platform target from x86 to Any CPU. I already went through all the dependencies that I know about and made sure ...
11
votes
8answers
13k views

Deploy a Desktop Shortcut to a Device running Windows CE 4.2 (VS2005)

I have an application written using VS2005 in C# targeting the Compact Framework 2.0 SP2. As part of the solution, I have CAB deploy project which deploys to the device without a problem. What I can't ...
18
votes
5answers
10k views

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 / subtype? Edit: What I mean is that when you create a project, you first ...
11
votes
8answers
17k views

vcredist_x86.dll and version 8.0.50727.4053

Visual C++ 2005 I build on my system use CRT DLLs version 8.0.50727.4053. I believe it is the latest one and was automatically updated by Windows. On user systems, this version of the DLL is not ...
8
votes
11answers
8k views

How do I debug JavaScript in Visual Studio 2005?

I just saw this mentioned in Stack Overflow question Best WYSIWYG CSS editor and didn't know it could be done. I'm a Visual Studio newbie, so how do you do it? Is there a separate debugger for ...
6
votes
3answers
8k views

How to use typelists

I read about typelists in 'Modern C++ Design' and I understood it as some kind of union for types. By putting diffrent, non-related types in a typelist, one can use it to represent more than one type ...
4
votes
5answers
979 views

OpenGL suppresses exceptions in MFC dialog-based application

I have an MFC-driven dialog-based application created with MSVS2005. Here is my problem step by step. I have button on my dialog and corresponding click-handler with code like this: int* i = 0; *i = ...
4
votes
3answers
432 views

comparing products of builds in release

I need to compare build outputs of VS2005 in order to be sure I can reproduce the exact same product. when I do two builds one after the other in release and compare the produced files I get ...
17
votes
5answers
17k views

Visual Studio - Copying files into the application folder at compile time

If I have some files I want to copy from my project into the bin\debug\ folder on compilation then it seems I have to put them into the root of the project - putting them into a subfolder seems to ...
12
votes
5answers
24k views

Error: The Side-by-Side configuration information in “BLAH.EXE” contains errors

This is the error Dependency Walker gives me on an executable that I am building with VC++ 2005 Express Edition. When trying to run the .exe, I get: This application has failed to start because the ...
7
votes
6answers
3k views

How to put breakpoint in every function of .cpp file?

Is there a macro that does it? Which DTE objects to use?
3
votes
1answer
365 views

How do I disable 'Just My Code' in Visual Basic 2005 Express?

How do I disable 'Just My Code' in Visual Basic 2005 Express? It is supposed to be in menu Tools -> Options -> Debugging -> Enable Just My Code, but I can't find it.
3
votes
7answers
1k views

Is it possible to iterate over two IEnumerable objects at the same time?

If I have a List(Of x) and a List(Of y) is it possible to iterate over both at the same time? Something like for each _x as X, _y as Y in List(of x), List(of y) if _x.item = _y.item then ...
11
votes
4answers
4k views

Where is <inttypes.h> in Visual Studio 2005?

I'd like to use the C99 header file inttypes.h in a Visual Studio project (I'd like to printf 64 bit numbers). However, this file does not seem to exist in my install. Is this just not part of ...
6
votes
3answers
541 views

Identical build on different systems

I have 3 build machines. One running on windows 2000, one with XP SP3 and one with 64bit Windows Server 2008. And I have a native C++ project to build (I'm building with visual studio 2005 SP1). My ...
6
votes
9answers
10k views

Why can't I debug?

When I was about to debug C++ program in VS2005,the program didn't stop at the breakpoints. The VS said"No symbols are loaded for any call stack frame. The source code cannot be displayed". What can ...
4
votes
2answers
4k views

How can i build a visual studio solution using xbuild (from Mono)?

I recently downloaded Mono 2 for my new MacBook. I'm trying to figure out how to compile Visual Studio solutions with xbuild, which is included in Mono. Any ideas?
3
votes
1answer
4k views

How to use Crystal Reports without a tightly-linked DB connection?

I'm learning to use Crystal Reports (with VB 2005). Most of what I've seen so far involves slurping data directly from a database, which is fine if that's all you want to display in the report. My ...

1 2 3 4 5 7