Display a 'save file' dialog with the filter set for '.mdb' files.
Returns a string containing the selected file path or an empty string if 'Cancel' was pressed or nothing was selected.
The default path for the file browsing window
The caption to appear in the title bar at the top of the dialog window
(no description)
(no description)
(no description)
Insist that the selected file must exist
Hide read-only files
Dim s As String
s = xf.Interact.SaveFileDialog_mdb("Save Database File")
If s <> "" Then txtDbPath = s