StepInto Method

Home Page (Objects)OverviewFAQReference

Applies to: Debugger object

Steps into a called function, executing each instruction step by step.

Syntax

object.StepInto

Parameters

object

An expression that evaluates to a Debugger object.

Remarks

During program debugging, if the next instruction is a function call, the StepInto method steps inside the function and then executes each instruction step by step. This continues until all instructions have executed or until you call the StepOut method.

Use the StepOver method to execute a called function without stepping through it.

Example

The following example steps into a called function:

Debugger.StepInto