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.
forward
global type nvo_sysfunc_platform from nvo_sysfunc_services
end type
end forward
global type nvo_sysfunc_platform from nvo_sysfunc_services
end type
global nvo_sysfunc_platform nvo_sysfunc_platform
type prototypes
// Windows 32 Bit calls
Function boolean CreateDirectoryA (ref string pathname, int sa) Library "kernel32.dll"
Function ulong CreateMutex(ULong lpsa, Boolean fInitialOwner, String lpszMutexName) Library 'kernel32.dll' Alias for CreateMutexA
Function ulong WNetGetConnectionA (ref string drv, ref string unc, ref ulong buf ) Library "Mpr.dll"
....etc....
end prototypes
type variables
// ShowWindow() Commands
CONSTANT LONG SW_HIDE = 0;
CONSTANT LONG SW_SHOWNORMAL = 1;
...etc...
end variables
forward prototypes
public function boolean createdirectory (string as_path)
public function boolean setcurrentdirectory (string as_path)
...etc...
end prototypes
forward
global type nvo_sysfunc from nonvisualobject
end type
end forward
global type nvo_sysfunc from nonvisualobject
end type
global nvo_sysfunc nvo_sysfunc
type variables
nvo_sysfunc_datetime invo_datetime
nvo_sysfunc_file invo_file
nvo_sysfunc_inifile invo_inifile
nvo_sysfunc_platform invo_platform
nvo_sysfunc_window invo_window
...etc...
end variables
forward prototypes
public function boolean uf_movefile (string as_from, string as_to)
public function integer uf_parsefilename (string rawfile, ref string drive, ref string path, ref string basename, ref string extension)
public function string uf_findfile (string as_filename)
...etc...
end prototypes
public function boolean uf_movefile (string as_from, string as_to);Return invo_file.MoveFile(as_from, as_to)
end function
public function integer uf_parsefilename (string rawfile, ref string drive, ref string path, ref string basename, ref string extension);Return invo_file.ParseFileName(rawfile, drive, path, basename, extension)
end function
public function string uf_findfile (string as_filename);Return invo_file.FindFile(as_filename)
end function
...etc...