Unknown
Unknown

Reputation: 306

how to debug without visual studio IDE

how to debug a exe without having visual studio IDE

Upvotes: 0

Views: 1094

Answers (3)

David Silva Smith
David Silva Smith

Reputation: 11716

If you are debugging a managed exe check out mdbg http://blogs.msdn.com/b/jmstall/archive/2005/02/04/367506.aspx

Upvotes: 1

sloth
sloth

Reputation: 101162

Using another debugger like WinDbg for example. Have a look here and here (or google around) for an introduction.

Upvotes: 5

Dartoxian
Dartoxian

Reputation: 780

Windows Debugger is built into Windows try that. I used to use a decompiler to work out what was happening sometimes, these are usually commercial products, but free ones are out there =]

Upvotes: 1

Related Questions