Page 1 of 1

Debugging tool with wxWidgets and VC++ .NET

Posted: Thu Sep 17, 2009 12:11 pm
by MuhammadSohail
Hi all,
I m working with VC++ .Net and wxWidgets. Does someone know about the free debugging tools.

I have found "WinDbg" tool in the Internet but currently good documenation with example is not available.

Plz write me all possible debugging tools and there links

Posted: Thu Sep 17, 2009 12:23 pm
by Romas
Visual Studio has internal debuger by default...

Posted: Thu Sep 17, 2009 12:53 pm
by MuhammadSohail
Yes i know it can only be used on compiling.
We are selling our software, i want to generate dump or stack report at the customer PC in order to improve my software.

Posted: Thu Sep 17, 2009 12:58 pm
by Romas
wxWidgets has a mechanism for "stack walker", why not use this one? With this, you can generate core dump which later can be easily viewed with visual studio...

Visual Studio can debug all kind of apps (release and debug), but I really doubt you need this :p

Posted: Thu Sep 17, 2009 1:01 pm
by MuhammadSohail
Can you please write an example of stackWalker , How do i use it in my programm or any tutorial.

How would i debug my programm with Visual studio in releas mode?

Posted: Thu Sep 17, 2009 1:08 pm
by Romas
Stackwalker is in samples\debugrpt. Debuging in release is art :P The debuing in release with visual studio is quite similar to windbg. I really doubt you will find a better one, which will show your code lines without debuging info. Find bugs in debug mode, on your machine, add good log functionality. :)

Posted: Thu Sep 17, 2009 1:20 pm
by MuhammadSohail
is there any freeware debugging tool with good documentation?

Posted: Thu Sep 17, 2009 2:25 pm
by doublemax