Dear Antonio,
I remember that you showed on SLACK how to run a mod harbour program in kiosk mode on PC.
Unfortunately, I no longer have access to SLACK. Can you please post again how to do it?
Best regards
Otto
window.onbeforeunload = function (e) {
var e = e || window.event;
// For IE and Firefox
if (e) {
e.returnValue = 'Any string';
}
// For Safari
return 'Any string';
};
#include "FiveWin.ch"
//----------------------------------------------------------------------------//
function Main()
local oDlg, lExit := .f., oBtn
DEFINE DIALOG oDlg FROM 5, 5 TO 15, 40 TITLE "A Dialog Box"
@ 3,4 ;
BUTTON "&END" ;
SIZE 40, 12 ;
ACTION ( lExit := .t., oDlg:End() ) ;
OF oDlg
@ 3, 12 BUTTON oBtn PROMPT "&Run" OF oDlg SIZE 40, 12 ;
ACTION ( waitrun( "c:\test\formular.bat", 0 ) )
ACTIVATE DIALOG oDlg VALID lExit
return nil
//----------------------------------------------------------------------------//
cd\
cd C:\Windows\System32
REM window-position=y col,x row
start chrome --new-window --app=https://... --window-position=600,300 --window-size=1500,730
--new-window --app=https://wintest.com/formular/index.html --window-position=600,300 --window-size=1500,730
@ 3, 12 BUTTON oBtn PROMPT "&R u n" OF oDlg SIZE 40, 12 ;
ACTION ( ShellExecute( 0, 'Open', "https://wintest.com/formular/index.html" , ) )
Users browsing this forum: No registered users and 4 guests