BD (Breakpoint Disable)

Syntax

BD [[list|start-end|*]]

Parameters

list

List of breakpoints to be disabled, with breakpoint numbers separated by spaces. A number identifies each breakpoint. You can use the Breakpoint List (BL) command to display currently set breakpoints and their numbers.

start-end

Range of breakpoints to disable. The command disables breakpoints numbered from start to end, inclusive.

*

Disables all currently set breakpoints.

Description

The Breakpoint Disable (BD) command temporarily disables one or more existing breakpoints. The breakpoints are not deleted; they can be restored at any time using the Breakpoint Enable (BE) command.

A disabled breakpoint can be cleared using the Breakpoint Clear (BC) command.

In the Source window, enabled breakpoints are highlighted. However, the highlighting disappears once the breakpoint is disabled.

Mouse and Keyboard

As an alternative to typing the BD command, choose Edit Breakpoints from the Data menu. There is no keyboard shortcut.

Examples

The following example temporarily disables breakpoints 0, 4, and 8:

>BD 0 4 8

The following example temporarily disables all breakpoints:

>BD *

The following example disables breakpoints 4, 5, 6, and 7:

>BD 4-7