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.
Const BIF_editbox = &H10
Const BIF_browseincludefiles = &H4000
Private Sub Form_Load()
Dim objShell As Shell32.Shell
Dim objFolder As Shell32.Folder2
Set objShell = New Shell32.Shell
Set objFolder = objShell.BrowseForFolder(&H0, "Select the file", _
BIF_editbox + BIF_browseincludefiles, "")
MsgBox objFolder.Self.Path & " " & _
objFolder.Self.Name & " "
End Sub