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 fso As Scripting.FileSystemObject
Dim lFolder As Scripting.Folder
Dim lFile As Scripting.File
Set fso = New Scripting.FileSystemObject
Set lFolder = fso.GetFolder("C:\")
For Each lFile In lFolder.Files
Debug.Print lFile.Name
Next
Dim rslt As String
rslt = Dir("C:\")
Do
Debug.Print rslt
rslt = Dir
Loop While rslt <> ""