vote up -1 vote down star

If an application† crashes:

alt text

i hit "Debug" and Visual Studio is my currently registered Just-In-Time (JIT) debugger:

alt text

Visual Studio appears, but there's no way to debug anything:

alt text

  • i do not see any disassembly.
  • i do not see any symbols
  • i do not see reconstructed source code from reflection
  • i do not see any registers
  • the call stack is empty

Other JIT debugger products are able to show disassembly, but they are either command-line based (Debugging Tools for Windows), or do not support symbols (OllyDbg, Delphi). Additionally, my question is about debugging using Visual Studio, since i already have it installed, and is already my registered JIT.

How do you debug a program using Visual Studio?

Alternatively: has anyone written a graphical debugger that supports the Microsoft symbol server?

† not, necessarily, written in Visual Studio

flag

56% accept rate
I don't get it. Is this your program? Or someone else's? – Rich B Dec 11 '08 at 21:11
Yes. The same question applies for both. If it is my own application, then i want to debug the executable. If it is someone elses then i want tot debug the executable. – Ian Boyd Dec 11 '08 at 21:28
If it is yours, you would be in VS, and you would perform the steps in my answer. If it is not yours, you will likely be very limited if the debugging symbols are not included. – Rich B Dec 11 '08 at 21:29
@Rich B: i'm not inside VS, since you see Windows crash dialog, rather than VS catching it. – Ian Boyd 23 hours ago
Why would anyone care a year later? With this kind of response time to answers, you have no hope of ever solving your issue. Especially since you still wont answer the requests for better information. – Rich B 2 hours ago

4 Answers

vote up 2 vote down

Assuming this is your application that you wrote in VS, just press F5 to run the program and either use a breakpoint, or manually break the program to start debugging.

link|flag
How do i load an executable into Visual Studio? – Ian Boyd Dec 11 '08 at 21:28
If it is your program, you would be developing it in VS. Just press F5. If it is anything besides this, you will need to supply a lot more details in the question. – Rich B Dec 11 '08 at 21:32
1  
He's not writing the application, it's when programs he's the end user of crash (unhandled exceptions) that he is getting this. Thus, he has no source code. – Jeff Dec 11 '08 at 22:35
@Jeff: You are clearly wrong according to his comments. – Rich B Dec 15 '08 at 15:21
Not every Win32 executable written today is created with Visual Studio. – Ian Boyd 23 hours ago
show 1 more comment
vote up -1 vote down

If you do not have the Express edition (example you have the VS2005 Pro) you can debug remotly.

You will need to get your CD and install the remote tool on the client desktop. Once this is installed in the desktop you will be able to link the client to your desktop when exception raise. This will require that your client has the .pdb on his side.

You can get more information at MSDN and here

link|flag
vote up -1 vote down

The problem in the last screen shot is that VS did not enter break mode automatically. That seems like a bug. If you hit the 'pause' button on the toolbar, it would enter break mode, giving you disassembly, and a callstack.

According to that last screen shot you were actually attached to the program .. the output windows show it loaded stripped symbols for ole and the crt.

link|flag
vote up -1 vote down

You can debug a program with VS if yo have the debug information available for this program. It's the difference between compiling a Release version (normally without debug information) and compiling a Debug version.

This dialog to debug a program is handy if you are testing the debug version of your self-written program. You can attach it "on-the-fly" to your VS debugger and look for the problem.

If it is not your program or it is your program but does not provide debugging info which VS can understand, then you are out of luck.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.