6
votes
7answers
2k views
Quickest way to implement a C++ Win32 Splash Screen
What's a simple way to implement a c++ Win32 program to...
- display an 800x600x24 uncompressed bitmap image
- in a window without borders (the only thing visible is the image)
- …
5
votes
7answers
1k views
<iostream> vs. <iostream.h> vs. “iostream.h”
When including a header file in C++, what's the difference between...
1) including the .h versus not including the .h when wrapping it in < > signs?
#include <iostream …
3
votes
4answers
227 views
Is there a good C++ crash reporting library that works well with Visual Studio 2005?
After reading this previous discussion and …
0
votes
2answers
85 views
How do you configure the email settings in CrashRpt to send the crash dump?
After reading this discussion and …
0
votes
3answers
792 views
Debugging Multi-Project (C++) Solutions in Visual Studio 2005
I'm currently developing an application that is comprised of five separate executables that communicate via ActiveMQ. I have a Visual Studio Solution that contains the five executable projects. O …
3
votes
1answer
176 views
What’s an easy way to obtain the current svn revision in a c++ visual studio application
Is there any easy way to access the SVN repository revision number and store it in a c++ string in a c++ visual studio application?
Thanks for your help in advance!
…
2
votes
3answers
210 views
What’s a quick way to trace the entry and exit of functions in a Visual Studio 2005 c++ multithreaded program?
I have intermittent crashes occurring in my ActiveMQ libraries due to the way I'm using the activemq-cpp API. It'd be much easier to debug the issue if I could observe every function being called …
1
vote
1answer
400 views
My C++ ActiveMQ client can send messages, but not receive messages
I have the ActiveMQ-CPP 2.2.1 Visual Studio 2005 project compiling and running. In the console window, it shows the messages are being sent, though they're not being received. I can both send and …
1
vote
7answers
174 views
What’s an effective and somewhat easy to build system to allow customer to submit bug reports after deployment?
I'll be deploying a C++/DirectX/Windows game at the end of January to my customer and I'd like to setup an easy way for them to submit bug reports. Should I setup a website for this? Should I bui …
2
votes
5answers
2k views
Truncate a decimal value in c++
What's the easiest way to truncate a c++ float variable that has a value of 0.6000002 to a value of 0.6000 and store it back in the variable?
Thanks in advance!
…
14
votes
10answers
1k 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 do …
0
votes
3answers
1k views
What are some reasons I might be receiving this “Symbol not defined” error in Visual Studio 2005 (screenshot included)
When debugging my VS2005 project, I get the following error when I attempt to step into the function that
returns the vScenarioDescriptions local variable it's struggling with...
…
5
votes
1answer
427 views
Can you make Visual Studio 2005 provide command line arguments for your startup program?
For testing purposes, is there some place in the Visual Studio IDE where you can specify the command line parameters that you want sent to your startup project when it's launched from the IDE?
…
1
vote
3answers
479 views
Visual Studio 2005: static text control won’t display with transparent background
I'm using the Dialog editor in Visual Studio 2005 to create a Dialog box with a static text control. I'd like the background of the static text control to be transparent since I'm using an static …
0
votes
5answers
307 views
C++ What’s the max number of bytes you can dynamically allocate using the new operator in Windows XP using VS2005?
I have c++ code that attempts to dynamically allocate a 2d array of bytes that measures approx 151MB in size. When I attempt to go back and index through the array, my program crashes in exactly t …
