Tagged Questions

3
votes
3answers
455 views

Visual C++ express 2008: Why does it places megs of null bytes at the end of the release executable?

Recently I have discovered that my release executable (made with msvc++ express 2008) becomes very large. As I examine the executable with a hex viewer I saw that only the first 300k bytes contains ...
0
votes
1answer
199 views

v8 release mode linker error with winsock

This subject became a side subject after I accepted an answer for my last question, so I will put it here as a separate topic for neatness, and I believe this will make it more useful for others. I ...
0
votes
1answer
162 views

How can I link my project to the debug version of the MFC DLL in Release mode?

I am working on a project which is in release build. I can't work on debug build for certain reason. In the Release build, can I instruct Visual Studio to link against debug version of MFC DLLs, so I ...
0
votes
2answers
187 views

Weird behavior of std::vector

I have a class like this: class OBJ{...}; class A { public: vector<OBJ> v; A(int SZ){v.clear(); v.reserve(SZ);} }; A *a = new A(123); OBJ something; a->v.push_back(something); ...
0
votes
1answer
172 views

OnCtrlColor Not Working?

I used the following overloaded method to change the text color to red in a listbox, in a Visual C++ MFC dialog based application. When I build the program in DEBUG mode, it works perfectly. But when ...
0
votes
3answers
636 views

Problem in compiling in release mode --VC++

I am compiling my project in the release mode in VC++. I have a .def file where i have declared the setLog and now i am getting following error Linking... Creating library Release/HKL.lib and ...