MAKES VISIBLE ALL THE SYSTEM OBJECTS
ACTION
The command SHOW_ALL makes visible all the system objects.
SYNTAX:
SHOW_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
SHOW_ALL
SHOW_ALL
SEE ALSO
HIDE
SHOW
HIDE_ALL
HIDE()
SHOW()