I have a formset within whcih I launch multiple forms.
I can also launch the same form multiple times.
I have another form that has a timer that does a few things and needs to set
the focus to itself. I want to then reactivate the form that was on top at
the time.
I am currently storing WONTOP() to mWontop at the beginning of the timer
event and then calling ACTIVATE WINDOW (mWontop) at the end of the timer
event.
This seems to work fine except when there are multiple copies of the active
window open. In this case, only the one first opened comes to the top.
I also tried the following but it did nothing:
mWontop = _Screen.ActiveForm
DO Stuff.......
mWontop.Activate
How can I reselect the specific window that was on top at the time?
Cheers
David