HIDE_ALL

HIDE_ALL

MAKES INVISIBLE ALL THE SYSTEM OBJECTS

  • Type: Command
  • Parameter: 0
  • Group: System Objects

ACTION

The command HIDE_ALL makes invisible all the system objects.

SYNTAX: HIDE_ALL

USE

  • The command HIDE_ALL is used to make invisible all the system objectst.
  • The command HIDE_ALL has an inverse command : SHOW_ALL.

ERROR

  • None.

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

SEE ALSO

HIDE

SHOW

HIDE()

SHOW()