hello,
is there anyway that I can make a form load and then close automatically after 3 seconds?
Printable View
hello,
is there anyway that I can make a form load and then close automatically after 3 seconds?
Slap a timer control on the form, set the interval to 3000 and putin the Timer event.Code:Unload Me
Add a timer and set its Interval property to 3000 and add this code in the Timer event.
Best regardsCode:Private Sub Timer1_Timer()
Timer1.Enabled = False
Unload Me
End Sub