hello, is there anyway that I can make a form load and then close automatically after 3 seconds?
Visual Basic 6, HTML, JavaScript, learning C++
Slap a timer control on the form, set the interval to 3000 and put Code: Unload Me in the Timer event.
Unload Me
Add a timer and set its Interval property to 3000 and add this code in the Timer event. Code: Private Sub Timer1_Timer() Timer1.Enabled = False Unload Me End Sub Best regards
Private Sub Timer1_Timer() Timer1.Enabled = False Unload Me End Sub
Forum Rules