Set Nobreak Command

This command clears breakpoints set by the Set Break command. It can clear a single breakpoint or multiple breakpoints, depending on the parameters.

Set Nobreak [ project_name ] [ “file_name” ] [ line_number]

Prerequisites

None.

Parameters

project_name

Optional project that contains the procedure where breakpoints are to be cleared. If omitted, all breakpoints in all projects are cleared.

file_name

Optional quoted string specifying the name of the file that contains the procedure where breakpoints are cleared. If omitted, all breakpoints in the specified project are cleared.

line_number

Optional number of a line within the file that contains the procedure instruction where a breakpoint is to be cleared. If omitted, all breakpoints in the specified file are cleared.

Remarks

No errors occur if the specified breakpoints are not found.

Examples

Set Nobreak My_project “Testfile.gpl” 30
Set Nobreak My_project
Set Nobreak

See Also

Console Commands | Set Break Command | Show Break Command