VB Code:
Dim t(5) As Timer Private Sub Form_Load() t(0).Interval = 5000 t(0).Enabled = True End Sub Private Sub t_Timer(numb As Integer) MsgBox "timer for " & t & "is finished." End Sub
how do i correct this code?
it says with block variable not set for the
t(0).Interval = 5000




Reply With Quote