Tagged Questions

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)

107
votes
16answers
63k 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 ...
35
votes
15answers
4k 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, ...
32
votes
4answers
8k 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. ...
29
votes
6answers
9k 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 ?
28
votes
2answers
786 views

Remove the automatic #region/#endregion tags when implementing an interface in Visual Studio 2005/2008

When user the "Implement Inteface X" context menu feature, the inserted code gets surrounded by a #region [interfacename] Members #endregion pair. I always end up deleting this, is there a way I ...
26
votes
4answers
26k 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 ...
26
votes
4answers
8k 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.
25
votes
6answers
10k 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.
24
votes
4answers
14k views

How do I find the stack trace in Visual Studio?

I ask because I couldn't find the stack trace in Visual Studio, while debugging an exception that occurred.
23
votes
4answers
812 views

Is this valid C++ code?

I had the following code, which was basically, class foo { public: void method(); }; void foo::foo::method() { } I had accidentally added an extra foo:: in front of the definition of ...
22
votes
10answers
22k 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 ...
21
votes
10answers
3k 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 ...
19
votes
5answers
10k views

How to work offline with TFS

Our TFS server has some temporary connectivity issues right now, and as such VS has gone unresponsive, leaving 50+ developers unable to work! Is it possible to switch TFS into an offline mode in the ...
18
votes
4answers
759 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 ...
17
votes
4answers
7k views

Debugging asp.net with firefox and visual studio.net - very slow compared to IE

Debugging asp.net websites/web projects in visual studio.net 2005 with Firefox is loads slower than using IE. I've read something somewhere that there is a way of fixing this but i can't for the ...
13
votes
1answer
434 views

Pointer stability under Windows Vista

I have been using Visual Studio 2005 under Windows XP Pro 64-bit for C and C++ projects for a while. One of the popular tricks I have been using from time to time in the debugger was to remember a ...
13
votes
6answers
10k 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 ...
13
votes
9answers
5k views

Unable to create PDB file

For some reason this error started popping up today on one of my projects. Error 1 Unable to write to output file 'C:\MyProject\Release\MyProject.pdb': Unspecified error If I go into ...
12
votes
1answer
721 views

False sense of security with `snprintf_s`

MSVC's "secure" sprintf funcions have a template version that 'knows' the size of the target buffer. However, this code happily paints 567890 over the stack after the end of bytes... char bytes[5]; ...
12
votes
3answers
9k 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 ...
12
votes
6answers
4k views

VS2005: Assembly '<assembly>' is incorrectly specified as a file

i've added a reference to the log4net assembly dll to my project. When i build i get a warning saying: Warning Assembly 'Lib\log4net.dll' is incorrectly specified as a file. i look up the ...
12
votes
8answers
2k views

What are the advantages of VS2008 over VS2005 for C++ development?

We are considering switching from MS Visual Studio 2003 to MS Visual Studio 2005 for our C++ development. I think jumping to 2008 might be better. In what ways are VS2008 better than VS2005 for C++ ...
12
votes
2answers
1k views

VS2005 VB.NET XML Comments ''' - stopped working

I'm using VS2005 in a solution with a mix of VB and C# in different projects. I use this solution on several different computers and XML comments with both /// (c#) and ''' (VB) have been fine for ...
11
votes
5answers
1k views

How to get actual JavaScript value in onclick from webbrowser control?

I'm looking for a way to get the JavaScript code defined inside of onclick. I'm using .NET 2.0 C# Visual Studio 2005. Example: <span id="foo" onclick+"window.location.href='someURL'>click ...
11
votes
3answers
2k views

Visual Studio search stops working

somehow visual studio search has stopped working for me. Anytime i search the solution for some text i get this result: Find all "[What ever i was searching for]", Subfolders, Find Results 1, ...
11
votes
3answers
8k views

Why am I getting the “LoaderLock was detected” warning when debugging?

I'm developing an add-on for AutoCAD 2009. The project output is a class library. When I attempt to debug and load the class library, I get this "LoaderLock was detected message." I've been writing ...
11
votes
3answers
2k views

Can the working directory be set in the project (.vcproj) file?

I have a script that generates a .sln file and a few .vcproj files for visual studio 2005. I need to set the WorkingDirectory option but its specified in the .user file. A file we cannot currently ...
11
votes
4answers
5k 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
4answers
5k views

Exclude files from web site publish in Visual Studio

Can I exclude a folder or files when I publish a web site in Visual Studio 2005? I have various resources that I want to keep at hand in the Solution Explorer, such as alternate config files for ...
11
votes
9answers
6k views

Would you like to continue and run the last successful build?

You're in Visual Studio... you press F5 (Run) and are greeted by this dialog: There were build errors. Would you like to continue and run the last successful build? Wonderful. I'm sure there ...
11
votes
3answers
5k 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?
11
votes
13answers
4k 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 ...
10
votes
3answers
2k views

How to downgrade solution from Visual Studio 2010 to Visual Studio 2005?

I have a huge Visual Studio 2010 solution. I work with Visual Studio 2005, so I want to convert the solution to the desired version. Basically, it's a portable C++ code so it should compile on Visual ...
10
votes
6answers
349 views

Will more CPUs/cores help with VS.NET build times?

I was wondering if anyone knew whether Visual Studio .NET had a parallel build process or not? I have a solution with lots of projects, every project has lots of markup/code, lots of types, etc. Just ...
10
votes
5answers
1k views

C# project reference's question

I have a c# solution and its composed of numerous projects. I have a project that is my baseassemblies that holds all common information that other projects use. All of the other projects have ...
10
votes
2answers
2k views

Mercurial integration into Visual Studio 2005?

Is there a way of integrating Mercurial into Visual Studio 2005? We'd like to be able to do checkin's, see history, etc. directly from the IDE.
10
votes
5answers
27k 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 ...
10
votes
7answers
4k views

Static member variable in template, with multiple dlls

My code is built to multiple .dll files, and I have a template class that has a static member variable. I want the same instance of this static member variable to be available in all dlls, but it ...
10
votes
1answer
7k views

How do you build the x64 Boost libraries on Windows?

I've built the x86 Boost libraries many times, but I can't seem to build x64 libraries. I start the "Visual Studio 2005 x64 Cross Tools Command Prompt" and run my usual build: bjam --toolset=msvc ...
10
votes
2answers
3k views

What are the implications of using /Zi vs /Z7 for Visual Studio C++ projects?

Background There are several different debug flags you can use with the Visual Studio C++ compiler. They are: (none) Create no debugging information Faster compilation times /Z7 Produce ...
10
votes
4answers
3k views

Determining 64-bit vs. 32-bit Windows

I'd like to configure visual studio 2005 to copy .dll's based on whether the OS is 64-bit or 32-bit during a build. I do not want to specify what the platform target is. My first attempt was to ...
10
votes
8answers
7k views

Visual Studio intellisense stopped working

I had installed resharper evaluation version and uninstalled it. After this the intellisense stopped working. I have restarted computer but still i have this problem. Can anyone plesae help me here? ...
10
votes
7answers
9k 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 ...
10
votes
7answers
7k views

Compilation fails randomly: “cannot open program database”

During a long compilation with Visual Studio 2005 (version 8.0.50727.762), I sometimes get the following error in several files in some project: fatal error C1033: cannot open program database ...
9
votes
3answers
326 views

Crash when running application due to existence of unexecuted code in source file - c++

I'm working on a pretty tricky problem that I've been on for literally a week now. I've hit a very hard wall and my forehead hurts from banging it so I'm hoping someone can help me out. I am using ...
9
votes
8answers
12k 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 ...
9
votes
3answers
4k 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 ...
9
votes
5answers
343 views

For C++ developers, is it worth to switch from VS2005 to VS2008?

We're mostly doing C++ developing in Visual Studio 2005, and some C# coding. We're considering upgrading to Visual Studio 2008, but we're wondering if it will be worth the trouble. From what I've ...
9
votes
4answers
1k views

Can I order the enum values in intellisense?

I have an eum type with 5 members. Is it possible to tell intellisense to order them the way I want? public enum numbers { zero, one, two, three, four } Intelisense shows (in ...
9
votes
10answers
12k 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 ...

1 2 3 4 5 48