VB Code:
  1. Dim t(5) As Timer
  2.  
  3. Private Sub Form_Load()
  4.     t(0).Interval = 5000
  5.     t(0).Enabled = True
  6. End Sub
  7.  
  8. Private Sub t_Timer(numb As Integer)
  9.     MsgBox "timer for " & t & "is finished."
  10. End Sub

how do i correct this code?

it says with block variable not set for the

t(0).Interval = 5000