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 strPath As String
Dim strFile As String
Dim intX As Integer
strPath = "C:\TEMP\"
strFile = Dir(strPath & "*.txt")
Do While strFile <> ""
intX = intX + 1
Name strPath & strFile As strPath & intX & ".txt"
strFile = Dir
Loop