IGNORES THE EVENT "CHANGE" WHEN THE SYSTEM OBJECT NUMBER N CHANGES
ACTION
The command OFF_CHANGE N ignores the event "change" on the system object designated by the number N: the event subprogram is not executed when a change happens in the system object.
Remark 1: the system object must be one of the following types: EDIT, MEMO, COMBO, TRACK_BAR, SCROLL_BAR, SPIN.
Remark 2: the event subprogram is defined by the command ON_CHANGE N,L which assigns the label L as the starting point of the event subprogram.
SYNTAX:
OFF_CHANGE N
USE ERROR EXAMPLE
rem declare a label
label changed
rem a MEMO is created
memo 1
on_change 1,changed
end: rem main program is finished
changed:
beep: rem treatment of event = beep
off_change 1:rem only one time
return
OFF_CHANGE
OFF_CHANGE N
SEE ALSO
ON_CHANGE