Questions tagged [visual-studio-2003]

Visual Studio 2003 is a version of Microsoft Visual Studio. Do not use this tag unless you have a specific question about Visual Studio -- not just a coding issue.

291 questions
67
votes
2 answers

How to properly replace global new & delete operators

(There were at least 4-5 topics with a similar topic on SO. I read each of them and I don't feel they really help me with this specific issue). I'm using Visual Studio .NET 2003 on Windows 7. I have my own overloads of new/delete that point to my…
void.pointer
  • 24,859
  • 31
  • 132
  • 243
55
votes
9 answers

Copying Visual Studio project file(s) to output directory during build

When I build a Visual Studio project, the executable is written to the output directory specified in the projects Property Page. I have a project that has some extra files (e.g., .ini file) that are used by the program. How can I configure the…
Synetech
  • 9,643
  • 9
  • 64
  • 96
53
votes
5 answers

Where to download Microsoft Visual c++ 2003 redistributable

I have an old dll that uses the Microsoft Visual C++ 2003 (7.1) run time package. Unfortunately I don't have that DLL around anymore. Short of reinstalling VS2003, is there another way to get the run time redistributable dll?
Jim McKeeth
  • 38,225
  • 23
  • 120
  • 194
29
votes
13 answers

the application for project is not installed

I'm opening a solution that was apparently built on Visual Studio 2003 (not sure, I don't know anything about it) and trying to migrate to 2010. When trying to migrate I get the message: the application for project '' is not installed make sure the…
Diego
  • 34,802
  • 21
  • 91
  • 134
22
votes
6 answers

How can I configure windows to generate a core dump from an application?

How can I configure windows to generate a core dump from an application? I'm using Win xp, and the application is build with Visual Studio 2003.
pcent
  • 1,929
  • 2
  • 14
  • 17
21
votes
16 answers

Has anyone managed to get Visual Studio 2003 running on Windows 7?

Yes, I know... I could set up a virtual machine running XP. Unfortunately our build environment is such that we need to be running VC2003, 2005 and 2008 concurrently and it would be much more convenient if I could run 2003 natively on Windows 7 for…
Jeremy White
  • 901
  • 2
  • 9
  • 21
21
votes
4 answers

Setting environment variables in pre-build event and using in compilation step

In Visual Studio 2003, I am trying to set an environment variable in the pre-build event that will then be used in the compilation step, but the value doesn't seem to be propagated. For example, if the pre-build event contains this (either directly…
15
votes
4 answers

Visual Studio .NET 2003 on Windows 7 hangs on search

So I have Visual Studio 2003 running on Windows 7 - yeah I am aware it isn't officially supported - and no, unfortunately I can't change that situation :-( For the most part it works OK but I have a specific problem, that I can't figure out. The…
Nikhil
  • 3,590
  • 2
  • 22
  • 31
13
votes
2 answers

How to inspect XML streams from the debugger in Visual Studio 2003

I've got to edit an XSLT stylesheet, but I'm flying blind because the XML input only exists fleetingly in a bunch of streams. I can debug into the code, but can't figure out how to get the contents of the streams out into text I can look at (and run…
Andrew M
  • 9,149
  • 6
  • 44
  • 63
10
votes
3 answers

Installing Visual Studio 2003 on Windows 7 64-bit

My team is currently supporting a 1.1 app and we are installing VS.NET 2003 on Windows 7. We haven't had any issues on the 32-bit machines, but FrontPage Server Extensions are failing to install on my 64-bit machine. Others say that they have done…
10
votes
6 answers

Omitting XML processing instruction when serializing an object

I'm serializing an object in a C# VS2003 / .Net 1.1 application. I need it serialized without the processing instruction, however. The XmlSerializer class puts out something like this:
Dan R
  • 5,258
  • 2
  • 16
  • 10
10
votes
3 answers

Wrong name resolution when parent and inner class have the same name

I have an odd case with Visual Studio 2003. For somewhat legitimate reasons, I have the following hierarchy: class A {}; class B : public A { public: class A {}; }; class C : public B::A {}; That is, I have an inner class with the same name…
Michael Mrozek
  • 169,610
  • 28
  • 168
  • 175
9
votes
2 answers

Can I still target .NET Framework 1.1 in VisualStudio 2010?

I am working with a project which uses .Net Frame V1.1 runs on VisualStudio 2003, Now, I want to run my project in VisualStudio 2010? Can I still target .NET Framework 1.1 in VisualStudio 2010?
9
votes
3 answers

System.BadImageFormatException: How to fix .NET version mismatch?

I wrote a dll in VS 2005 that will be loaded by another program that was developed in VS 2003. When that program tries to load my dll, it throws a System.BadImageFormatException: The format of the file 'Foo.dll' is invalid. I searched SO and Google,…
joshdick
  • 1,042
  • 4
  • 13
  • 20
9
votes
4 answers

Change MenuItem caption at runtime

I have a Menu with all sorts of Menu items, as you normally would. Every MenuItem (button) has a caption and I'd like to change that caption at runtime. On a normal button that isn't really a problem, I just call…
David Božjak
  • 16,887
  • 18
  • 67
  • 98
1
2 3
19 20