Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
DECLARE INTEGER ShellExecute IN shell32;
INTEGER hwnd, STRING lpOperation,;
STRING lpFile, STRING lpParameters,;
STRING lpDirectory, INTEGER nShowCmd
ShellExecute (0, "open", "tabtip.exe", "", "", 0)
FUNCTION closetabletkeyboard
lcProcess="tabtip.exe"
lcComputer = "."
loWMIService = Getobject("winmgmts:" ;
+ "{impersonationLevel=impersonate}!\\" + lcComputer + "\root\cimv2")
colProcessList = loWMIService.ExecQuery ;
("Select * from Win32_Process")
For Each loProcess In colProcessList
IF ALLTRIM(UPPER(loProcess.name)) == ALLTRIM(UPPER(lcProcess))
loProcess.terminate()
endif
Next