Thread: Timer
View Single Post
  #2 (permalink)  
Old 05-02-04, 08:46 PM
schiavo schiavo is offline
Newbie Coder
 
Join Date: May 2004
Location: SW Missouri
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
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
Reply With Quote