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.
Public Function MinsAndSecs(Seconds As Long) As String
Dim mins As Long, secs As Long
mins = Int(Seconds / 60)
secs = Seconds - (mins * 60)
MinsAnd Secs = CStr(mins) & ":" & CStr(secs)
End Function
Rick Sprague