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 strFileName As String
Dim oDialog As Object
Set oDialog = [Forms]![frmForm1]!xDialog.Object
With oDialog ' Ask for new file location.
.DialogTitle = "Please select a new file"
.Filter = "Access Database(*.mdb)|" & _
"*.mdb"
.FilterIndex = 1
.ShowOpen
' If user responded, put selection into text box on form.
If Len(.FileName) > 0 Then _
[Forms]![frmForm1]![txtFileName] = .FileName
End With
Set F = SA.BrowseForFolder(0, "Choose a folder", 0, strStartDir)