I am trying to get a full path and filename using the file dialog from MS Access VBA. In my MS-Access project I want to be able to save data into a user selectable folder and filename. To select the folder and filename MS-Access provides the FileDialog() function.
Set fDialog = Application.FileDialog(msoFileDialogSaveAs)
But the latest versions of MS-Access (especially the 64-bit version) the FileDialog function does not support the msoFileDialogSaveAs option any more.
Is there any way to get a folder and filename from the user using an API function like the FileDialog Object for the latest version of MS-Access?