MS Visual C++ Debugger Reference Card


Set/Remove Breakpoint: F9
This command sets/removes a breakpoint at the
current cursor position.

Start debugger: F5
This command starts your program under the debugger.
Execution stops at the first breakpoint.

Stop debugger: Shift-F5
(Works only when debugger is running).

Run to cursor: Ctrl-F10
This command forces the debugger to execute your
program until either current cursor position or a
breakpoint are reached.

Step over: F10
This command executes one statement treating functions
as single steps (thus the name "step over").

Step into: F11
Same as "Step Over", but steps into functions.

Step out: Shift-F11
Steps out of the function you are currently in.