Search Results

0
votes

Visual Studio 2003 Merge Modules

I would expect the merge modules for MFC 7.1 to be in %ProgramFiles%\Microsoft Visual Studio .NET 2003\redist, assuming that you have Visual Studio 2003 installed. (However, I can't ve …
0
votes

Where to download older versions of Visual C++ Express

If you want to link your application against the RTM (pre-SP1) version of the CRT (C runtime), you can apparently do that by …
2
votes

Why is runtime library a compiler option rather than a linker option?

One side effect of the C preprocessor definitions like _DLL and _DEBUG that zdan mentioned: Some data structures (such as STL containers and iterators) may be size …
0
votes

Visual Studio C++ Debugger: No hex dump?

I don't know if it's any good, but a quick Google search for "debugger display memory as bitmap" turned up Bitmap Memory …
1
vote

Port GNU C++ programs to Visual C++

Porting the build system: You could use a Windows port of GNU make, and change the makefile to invoke the Visual C++ command line tools (cl.exe, link.exe, …
0
votes

What’s Your Biggest Visual Studio 2008 Annoyance?

Debug CRT Deployment: Installing the debug C runtime (msvcr90d.dll) on test systems is far more complicated than it needs to be. I usually would prefer to use a …
0
votes

how do I stop a C++ application during execution to debug into a dll?

I've tried doing a 'set target application' deal, where I set the application that the dll will be called from, and the application crashes a horrible, horrible death when …
4
votes

Profiling DLL/LIB Bloat

When you build your DLL, you can pass /MAP to the linker to have it generate a map file containing the addresses o …