MAKES INVISIBLE ALL THE SYSTEM OBJECTS
ACTION
The command HIDE_ALL makes invisible all the system objects.
SYNTAX:
HIDE_ALL
USE ERROR EXAMPLE
rem create 10 BUTTONs
dim i%
for i%=1 to 10
button i%:caption i%,"Button "+str$(i%)
left i%,20*i%:top i%,20*i%
next i%
rem wait 1 second
wait 1000
rem hide them
hide_all
rem wait 1 second
wait 1000
rem show them again
show_all
HIDE_ALL
HIDE_ALL
SEE ALSO
HIDE
SHOW
HIDE()
SHOW()