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.
Private Declare Function GetTickCount Lib "kernel32" () As Long
Dim fLng_Start As Long
Dim fLng_End As Long
Dim fLng_Elapsed As Long
fLng_Start = GetTickCount
<Perform the Operation>
fLng_End = GetTickCount
fLng_Elapsed = fLng_End - fLng_Start