Yeah - the 60sec timer shouldn't be leaking - the slider timer probably leaks ... but how often does the slider slide (only when a new post arrives right?) ... Unfortunately - I haven't had the time lately to delve much into the current version of BBChecker and maybe see whats going on. But I imagine (without looking at the code) that if you leave the Slider timer running (forget to turn it off after the slide) that it will chew up memory pretty quick. If (my) memory serves - the Slider was running at 10ms or so. The way to turn a timer off is with:
$Timer.Interval = 0
or
$Timer.Enabled = 0
so maybe you should disable the Timer when its first created, then enable the timer when slider is first called, then disable the timer again before you leave the function. (maybe your already doing that?) [ 19. September 2002, 15:17: Message edited by: Shawn ]
|