How I can disable all on a form without a timer?
Sub Globals
Dim names(0) As String
End Sub
Sub App_Start
Form1.Show
DisableAll
End Sub
Sub DisableAll
names() = GetControls("Form1")
For i = 0 To ArrayLen(names()) - 1
Control(names(i)).Enabled = False
Next
End Sub