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.
Dim curTime As Date
Dim futTime As Date
curTime = Now
futTime = DateAdd("s", 10, curTime)
While curTime < futTime
curTime = Now
Wend
MsgBox "done with timer"