')))))))))))))))))))))
'form2
Private Sub Command1_Click()
Unload Form2
Form3.Show
End Sub
')))))))))))))))))))))
'form3
Private Sub Command1_Click()
Unload Form3
Form4.Show
End Sub
Private Sub Form_Load()
Counter = 5
End Sub
Private Sub Timer1_Timer()
Counter = Counter - 1 'we set the counter to count here
Text3.Text = Counter
'If Text3.Text = 0 Then
'MsgBox ("DONE")
'Unload Me
'End If
End Sub
'----------------
what happens is that "Sub Timer1_Timer()" never execited. the focus goes from the first End Sub in form3 to the End Sub in form2 and thats it, nothing happens. "Private Sub Timer1_Timer()" never executes. need some help here pls..