Hello Antonio,
Is there a possibility to keep a FWPPC application always on top in the forground?
Thanks in advance
Otto
Hello Antonio,
Is there a possibility to keep a FWPPC application always on top in the forground?
Thanks in advance
Otto
Otto,
But will the user be able to access the start windows menu and open other applications ?
Hello Antonio,
I would need to hide all from the user. The user should only be able to see the FWPPC application.
Best regards,
Otto
#include "FWCE.ch"
#define SHFS_HIDETASKBAR 2
#define SHFS_HIDESIPBUTTON 8
#define SHFS_HIDESTARTICON 20
function Main()
local oWnd
DEFINE WINDOW oWnd
ShFullScreen( oWnd:hWnd, SHFS_HIDETASKBAR )
ShFullScreen( oWnd:hWnd, SHFS_HIDESTARTICON )
ShFullScreen( oWnd:hWnd, SHFS_HIDESIPBUTTON )
ACTIVATE WINDOW oWnd ;
ON INIT MoveWindow( oWnd:hWnd, 0, 0, 300, 320 ) ;
ON CLICK oWnd:End()
return nilHello Antonio,
thank you.
Could you please add the link.
Best regards,
Otto
Otto,
Source code posted in my previous msg ![]()