How to...?

Started by
0 comments, last by Dko 20 years, 1 month ago
How do I use visual C++ 6.0''s debuger to step thru a program?
Advertisement
Start your program in debug mode... you can do this by either setting a break point (right click on the line and select insert breakpoint) and pressing F5, or by pressing F11 to "step into" the program code.

You can then press F11 for step into and F10 for step over.

This topic is closed to new replies.

Advertisement