Ok I am using timer1. I want timer1 to forward the thign they are on to form7 in 5 secs. any idea?
Printable View
Ok I am using timer1. I want timer1 to forward the thign they are on to form7 in 5 secs. any idea?
?
Isn't that what a timer is used for?
Could you re-phrase your question in English?? :rolleyes:
-or Spanish... but we'll only understand it some of us-
Ok Im pretty new to VB.
I have added a timer. its called timer1. after 5 seconds on that form(it would be on form5 if that matters) it will forward to form7.
What do you mean with "it will forward to form7"?
If you're trying to load the form7 after 5 seconds, just add this code:
VB Code:
Private Sub Timer1_Timer() Timer1.Enabled = False Form7.Show End Sub
Set the Interval property of your Timer1 to 5000
Like you were looking at form5... Then after 5 secs that form disapears and form7 pops up
Ok, then it'sVB Code:
Private Sub Timer1_Timer() Timer1.Enabled = False Form5.Hide Form7.Show End Sub
Set the Interval property of your Timer1 to 5000