views:

40

answers:

2

Hey,

Im using vs 2003. When I try to debug some program that uses several dll files i can debug (put breakpoint - without question mark) only on the cpp files of the project that creates the dll and was the last one that i compiled . breakpoints located on others dlls (that are part of the program and located in the same solution) are marked with question mark and the debugger doesnt reach them at all.

how can i solve it ?? thanks, liran

+1  A: 

You must build these dll's as debug and make sure they have the correct symbols in them? just a guess.

EToreo
A: 

You can load up the symbols from other assemblies by specifying the symbols path to them in Visual Studio. I'm not sure if the feature is in VS2003 or not, however.

Mike Atlas