Search Results

5
votes

Capturing cout in Visual Studio 2005 output window?

You can't do this. If you want to output to the debugger's output window, call OutputDebugString. I found …
2
votes

C99 stdint.h header and MS Visual Studio

Microsoft do not support C99 and haven't announced any plans to. I believe they intend to track C++ standards but consider C as effectively obsolete except as a subset of C++. New projects …
1
vote

Which language should I pick up: VB.Net or C#

Learn C#. You need a clean break from VB6, otherwise you'll be tempted to keep using the legacy functions. That's not to say that they don't work, but that a lot of VB6's functions fell into the pi …
0
votes

Weird MSC 8.0 error: “The value of ESP was not properly saved across a function call…”

If you're using any callback functions with the Windows API, they must be declared using CALLBACK and/or WINAPI. That will apply appropriate decorations to make the compil …
4
votes

DataReader within try block causing potential null reference error

If GetDataReader throws, dr will not be assigned and will still have its initial value. VB.NET does initialise references to Nothing, but the compiler will no …
1
vote

Pre-setting locations for looking for source files in Visual C++ 6.0

The paths to the source files are recorded in the debugging information (Program Database, .pdb). Make the build tree on your machine the same as the machine it was built on. …