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 Function SetSystemPowerState Lib "kernel32" (ByVal fSuspend As Integer, ByVal fForce As Integer) As Integer
Public Sub GotoStandbyMode
SetSystemPowerState(0,0)
End Sub
Public Sub LeaveStandbyMode
SetSystemPowerState(1,0)
End Sub
Declare Function SetSystemPowerState Lib "kernel32" (ByVal fSuspend As Integer, ByVal fForce As Integer) As Integer
Public Sub GotoStandbyMode
SetSystemPowerState([b]1[/b],0)
End Sub
Public Sub LeaveStandbyMode
SetSystemPowerState([b]0[/b],0)
End Sub