I am converting a VFP 3 program to VFP 5. After a popup is activated I define and activate a window. The window appears under the popup. Any program @ says or user output is directed to the newly activated window but the popup remains on top of the window! Any help would be very much apreciated. Thanks.
Sample program:
Defi Popu TestPop from 10,15 to 20,50
Define Bar 2 of TestPop Prompt " Line 1"
ON SELE POPU TestPop DO TestProcedure
ACTI POPU TestPop
Proc TestProcedure
Do Case
Case Bar() = 2
Defi Wind TestWind from 1,1 to 25,70
Acti Wind TestWind
@ 12,0 Say "Window is underneath, but according to VFP help should be on top!"
Wait " "
Endc
Deac Wind TestWind
Rele Wind TestWind
Sample program:
Defi Popu TestPop from 10,15 to 20,50
Define Bar 2 of TestPop Prompt " Line 1"
ON SELE POPU TestPop DO TestProcedure
ACTI POPU TestPop
Proc TestProcedure
Do Case
Case Bar() = 2
Defi Wind TestWind from 1,1 to 25,70
Acti Wind TestWind
@ 12,0 Say "Window is underneath, but according to VFP help should be on top!"
Wait " "
Endc
Deac Wind TestWind
Rele Wind TestWind