Computer Science Canada

Please help me people!!!!!

Author:  RaLz [ Tue Jun 08, 2004 9:32 pm ]
Post subject:  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

Author:  Tony [ Tue Jun 08, 2004 10:08 pm ]
Post subject: 

thats because you don't do that...
code:

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
code:

if index=2 then
print "2nd timer clicked"
end if


: