Dynamic Timers
Thanks :)i've been told that i can use timer id as a way to track the timers i cant seem to find a TimerID ability and i'm unsure to what is meant by it.i'm to create a timer using an integer as its ID...
View ArticleDynamic Timers
You can dynamically remove the handler like this:RemoveHandler Obj.Ev_Event, AddressOf EventHandler PublicSub TimerFired(ByVal sender AsObject, ByVal e As...
View ArticleDynamic Timers
Thanks for the quick reply, i'll do some reserch into both collections and thread timers i guess thread timers would be the best way as i could set a new one off as and when needed and it would...
View ArticleDynamic Timers
You can just use a collection of objects, which contains a reference to the timer. It may be possible to check the sender with the timers in your collection to see if they are the same object, then...
View ArticleDynamic Timers
hello all been struggling to find a way to solve a problem, i need to start a timer everytime a message is processed. each message needs its own timer.so i need to create a new timer each time and...
View Article