DELETES ALL THE SYSTEM OBJECTS
ACTION
The command ALL_DELETE deletes all the system object.
The numbers are free and can be reused.
Remark : it is forbidden to delete FORM0. For FORM0 : use HIDE, but not DELETE.
SYNTAX:
DELETE_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 delete them all
wait 2000:delete_all
DELETE_ALL
DELETE_ALL
SEE ALSO
DELETE