Hello Antonio,
Is there a possibility to keep a FWPPC application always on top in the forground?
Thanks in advance
Otto
FWPPC application always on top
FWPPC application always on top
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FWPPC application always on top
Otto,
But will the user be able to access the start windows menu and open other applications ?
But will the user be able to access the start windows menu and open other applications ?
Re: FWPPC application always on top
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
I would need to hide all from the user. The user should only be able to see the FWPPC application.
Best regards,
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
Re: FWPPC application always on top
Does someone has a solution for always on top in the forground?
Thanks in advance
Otto
Thanks in advance
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FWPPC application always on top
Otto,
A solution is to hide all the windows elements, so the user can't select a different application. Using SHFullScreen()
Here you have a working example:
A solution is to hide all the windows elements, so the user can't select a different application. Using SHFullScreen()
Here you have a working example:
Code: Select all
#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 nil
Re: FWPPC application always on top
Hello Antonio,
thank you.
Could you please add the link.
Best regards,
Otto
thank you.
Could you please add the link.
Best regards,
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FWPPC application always on top
Otto,
Source code posted in my previous msg
Source code posted in my previous msg