views:

30

answers:

1

The Title says it all.. I can't see what code called the line being executed at runtime using the debugger.

alt text

Added: How do I step into the methods that called the code being exectued themselves?

Thanks a lot.

+3  A: 

Try the following

  • Right click on the call stack
  • Select "Show External Code"

alt text

JaredPar
Thanks. It worked but I can't see the actual methods.. just kind of code I don't know (Disassembly) that looks like that: 00000094 pop ebx .
Oren A
@Oren A, it sounds like you either don't have symbols for those methods, it's native code or you don't have source code for the methods. It sounds like the source code issue because in the abscence of source code and symbols it will just display dissasembly. There isn't a way to fix this other than providing the source code.
JaredPar
@JaredPar: I do have the source code... What should I do?
Oren A
@JaredPar: Sorry I was wrong. I don't have the source code.. Was sure the calling code was mine but it's not. Thanks.
Oren A