Hi guys,
I have coded in several languages in my life, but have always steered clear of OO. But here I am.
I am trying to create multiple timers, and I wish to handle them with the same Timer_tick() routine; how do I achieve this?
</code>
Type stList(nTimer As Timer, name As String, cType As String, find As String, failed As Int, passed As Int, interval As Int, id As Int)
Private arCheckList() As stList
<code>
is there something like
arCheckList(1).nTimer.TickFunction = Tick_Timer()
I have coded in several languages in my life, but have always steered clear of OO. But here I am.
I am trying to create multiple timers, and I wish to handle them with the same Timer_tick() routine; how do I achieve this?
</code>
Type stList(nTimer As Timer, name As String, cType As String, find As String, failed As Int, passed As Int, interval As Int, id As Int)
Private arCheckList() As stList
<code>
is there something like
arCheckList(1).nTimer.TickFunction = Tick_Timer()