SHOW_ALL

SHOW_ALL

MAKES VISIBLE ALL THE SYSTEM OBJECTS

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

ACTION

The command SHOW_ALL makes visible all the system objects.

SYNTAX: SHOW_ALL

USE

  • The command SHOW_ALL is used to make visible all the system objects.
  • The command SHOW_ALL has an inverse command : HIDE_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_ALL

HIDE()

SHOW()