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.
'In a code module:-
Public IsDebugMode As Boolean
'In main or startup form:-
IsDebugMode = IIf(InStr(Command, "-DEBUG") > 0, True, False)
'As required:-
If IsDebugMode Then MsgBox "debug.mode"