EXECUTES THE PROGRAM FROM LABEL L WHEN THE USER RESIZES THE FORM NUMBER N
ACTION
The command ON_RESIZE N,L assigns a label (which must be defined in the program) from which the program will run every time the user resizes the FORM designated by the number N.
SYNTAX:
ON_RESIZE N,L
USE ERROR EXAMPLE
label resize
dim c%
caption 0,"Resize FORM0 with mouse"
on_resize 0, resize
end
resize:
c%=c%+1
caption 0,"resized "+str$(c%)+" times"
return
ON_RESIZE
ON_RESIZE N,L
SEE ALSO
OFF_RESIZE