vote up 0 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 my application

flag

55% 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

2 Answers

vote up 0 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
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
vote up 0 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

Your Answer

Get an OpenID
or

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