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.
[blue]Private Sub Timer1_Timer()
Static TimerCounter As Long
TimerCounter = TimerCounter + 1
If TimerCounter Mod 10 = 0 Then
[green]' Do Timer stuff, since this is 10 minutes[/green]
End If
End Sub[/blue]
Public Declare Function SetTimer Lib "user32" (ByVal hwnd As Long, ByVal nIDEvent As Long, ByVal uElapse As Long, ByVal lpTimerFunc As Long) As Long
Public Function ServiceTime()
lngTimerID = SetTimer(0, 0, 600000, AddressOf TimerProc)
End Function
Private Function TimerProc(ByVal hwnd As Long, _
ByVal uMsg As Long, _
ByVal idEvent As Long, _
ByVal dwTime As Long)
End Function