Hi
The system I am developing needs to run full screen and always be on top. Ideally I would like the Windows key deactivated so that nothing else can be displayed. However we can live with the situation where if the Windows key is pressed and the toolbar displayed etc once focus is returned to the system it again shows full screen with nothing else visible.
At the moment I am doing this by having an initial form which is called from my MAIN program with
SET SYSMENU OFF
DO FORM formname
READ EVENTS.
This form has
ALWAYS ON TOP .T.
DESKTOP .F.
SHOWWINDOW AS TOP LEVEL FORM
WINDOW TYPE MODAL
all subsequent forms are called from buttons within the forms and have the following settings
ALWAYS ON TOP .F.
DESKTOP .F.
SHOWWINDOW IN TOP LEVEL FORM
WINDOW TYPE MODAL
I am however encountering several problems.
TOOLTIPS do not show
DEBUG screens do not show
In my error routine I can display the error but cannot then close the forms down.
I tried having SHOWWINDOW set to IN SCREEN with DESKTOP set to .T. but you then cannot see the PREVIEW of any reports.
There is obviously a better way can anyone tell me what it is please.
Thanks
Malcolm.
The system I am developing needs to run full screen and always be on top. Ideally I would like the Windows key deactivated so that nothing else can be displayed. However we can live with the situation where if the Windows key is pressed and the toolbar displayed etc once focus is returned to the system it again shows full screen with nothing else visible.
At the moment I am doing this by having an initial form which is called from my MAIN program with
SET SYSMENU OFF
DO FORM formname
READ EVENTS.
This form has
ALWAYS ON TOP .T.
DESKTOP .F.
SHOWWINDOW AS TOP LEVEL FORM
WINDOW TYPE MODAL
all subsequent forms are called from buttons within the forms and have the following settings
ALWAYS ON TOP .F.
DESKTOP .F.
SHOWWINDOW IN TOP LEVEL FORM
WINDOW TYPE MODAL
I am however encountering several problems.
TOOLTIPS do not show
DEBUG screens do not show
In my error routine I can display the error but cannot then close the forms down.
I tried having SHOWWINDOW set to IN SCREEN with DESKTOP set to .T. but you then cannot see the PREVIEW of any reports.
There is obviously a better way can anyone tell me what it is please.
Thanks
Malcolm.