Search Results

0
votes

How to get a full call stack in Visual Studio 2005?

Or, optionally (assuming that Visual Studio is not installed), grab a copy of Windows Debugging Tools, ins …
1
vote

Setting both Debug and Release settings in Visual C++ 2008

We recently switched to Qt's build (qmake) tool which is capable of generating both makefiles (used in batch product build) as well as project (.vcproj) files when working on individual projects. …
1
vote

watch a class object at memory addresss on Visual Studio

just a blind guess: try (myDLL!myClass*)(0x0012ECE0) another question, how can you be sure it is your object's address? as a side note, try the windbg - it is way simpler to look for objects …