Debuging problem in MSVC 2003

Started by
7 comments, last by Silly_con 19 years, 5 months ago
I am used to use msvc 6.0, now I have version 2003, but the debugger doesn't work weel for me. When I want to debug instruction by instruction in a function, you user hotkey F11, well, but in my programs, I can only debug in this way functions of the standart libs (string, stdio ...) but in my own functions doesn't work (it works like F10). thnx
Advertisement
I am the only one with this problem ?
Do you mean you installed the VC Toolkit, or you got VC 2003?
I got vc 2003 with ide
Make sure you're using the "Debug" configuration(or set it up so you have debugging symbols even in "Release", but that's another story).
--AnkhSVN - A Visual Studio .NET Addin for the Subversion version control system.[Project site] [IRC channel] [Blog]
I am sure, I am in debug mode, with symbols for debugging enabled ...
and it debug good except for F11 - debug into functions, and only into functions done by me.
You can only debug into functions that you have the source code, and pdb's for at a source level. ie you can't debug 3rd party calls or windows calls.

Hope that helped

Cheers
Chris
sorry, I explain it wrong, it's:

and it debug good except for F11 - debug into functions, and only it works into functions NOT done by me (like memcpy, printf ...).

This topic is closed to new replies.

Advertisement