I have a form designated as primary in which I start a UTimer and it runs perfectly using something like:
Activate "UTimer".Start("00.00.01")
Activate "UTimer".SetMessage($ComponentName, <ksAsynchTimerMessageId>, "")
Activate "UTimer".SetRepeat(0)
A button on this form activates another form as Normal/Modal,Attached. I need another UTimer on the activated form so I can process data in real time but when I attempt to start another timer using a similar syntax as above, it does not work and it "breaks" the already running UTimer. If I invoke the form by itself, it works as expected.
I've tried to scope the UTimer to the 2nd component but the Asynch Trigger still does not fire but at least it does not "break" the calling forms' UTimer.
By "break" I mean the Asynch Trigger no longer fires on the first form, either in the background or foreground when the secondary form is closed.