----------------------------------- RaLz Tue Jun 08, 2004 9:32 pm Please help me people!!!!! ----------------------------------- if i have two timers in a control array how come this doesn't work Private Sub badchartimer_Timer(2) i really need to know how to get this to work cuz this is really stressing me out ----------------------------------- Tony Tue Jun 08, 2004 10:08 pm ----------------------------------- thats because you don't do that... Private Sub Timer1_Timer(Index As Integer) where index gets assigned the value of the element that is being called. To have a special method for the 2nd timer, you would put if index=2 then print "2nd timer clicked" end if