When debugging on WinCE, how can I set Visual Studio to always load symbol files it knows about?
Posted
by tsellon
on Stack Overflow
See other posts from Stack Overflow
or by tsellon
Published on 2009-01-15T23:24:53Z
Indexed on
2010/04/15
8:03 UTC
Read the original article
Hit count: 351
I'm debugging a WinCE, C++ program in Visual Studio across an ActiveSync connection. Every time I start the process it fails to load symbol information. However, if I right click on the module and hit 'Load Symbols' it correctly locates the symbol information without any further prompting from me.
Is there a way that I can set Visual Studio to either:
- (a) automatically load this symbol information, or
- (b) automatically break the process into the debugger once it's loaded (similar to what windbg does)?
I'm guessing there's a setting somewhere, but I've yet to find it.
Update: I forgot to mention in the original question that I'm not debugging with the instance of Visual Studio that created the exe.
© Stack Overflow or respective owner