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.
Function GetDateTimeStamp
Dim strNow
strNow = Now()
GetDateTimeStamp = Year(strNow) & Pad2(Month(strNow)) _
& Pad2(Day(StrNow)) & Pad2(Hour(strNow)) _
& Pad2(Minute(strNow)) & Pad2(Second(strNow))
End Function
Function Pad2(strIn)
Do While Len(strIn) < 2
strIn = "0" & strIn
Loop
Pad2 = strIn
End Function