REMOVES ALL THE (HORIZONTAL AND VERTICAL) SCROLL BARS TO THE SYSTEM OBJECT NUMBER N (MEMO)
ACTION
The command BAR_NONE N removes all the horizontal and vertical scroll bars which were displayed, to the system object number N.
The system object is a MEMO, GRID or MEMO_RICH.
SYNTAX:
BAR_NONE N
USE ERROR EXAMPLE
memo 1:rem create a MEMO
wait 1000:rem wait for one seconde
bar_horizontal 1:rem assign it an horizontal scroll bar
wait 1000:rem wait for one seconde
bar_vertical 1:rem assign it a vertical scroll bar
wait 1000:rem wait for one seconde
bar_both 1:rem assign it horizontal and vertical scroll bars
wait 1000:rem wait for one seconde
bar_none 1:rem remove its scroll bars
BAR_NONE
BAR_NONE N
SEE ALSO
BAR_BOTH
BAR_HORIZONTAL
BAR_VERTICAL
MEMO
MEMO_RICH
GRID