Load a form using a timer.
Load a form using a timer.
Rate Load a form using a timer.
(1(1 Vote))
Private Sub Timer1_Timer()
If Timer1.Interval = 100 Then
Form2.Show
End If
'Form2 Code
End SubPrivate Sub Command1_Click()
If Text1.Text = "Dump" Then
Form3.Show
Timer2.Interval = 100
End If
End Sub
Load a form using a timer. Comments
No comments yet — be the first to post one!
Post a Comment