I'd write one timer event, on a timer set with interval = 3000 (3 seconds)
sub timer_timer()
Unload Me
' Unload does not terminate the current thread, but closes at end sub
dim NuForm as new form3
NuForm.Show
end sub
Quote:
|
Originally Posted by Marwan
How do I use the Timer Function to unload a form after 3 seconds of starting and reload other form after the first one closes?
Thanks for your time 
|