Message 1 of 8
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have my export dxf code and I want the user to be prompted to select the directory for where to save the dxf.
This is what I got now, but it only works when you type a file name and I don't want the user to have to type a file name, Im not going to use the typed file name anyways.
Dim oFileDirMan As String
Dim oFileDlg As FileDialog
Call ThisApplication.CreateFileDialog(oFileDlg)
oFileDlg.MultiSelectEnabled = False
oFileDlg.CancelError = False
oFileDlg.DialogTitle = "Save Where"
oFileDlg.FileName = "Please choose a directory..."
oFileDlg.ShowSave
oFileDirMan = oFileDlg.FileName & "\"
MsgBox (oFileDirMan)
Appreciate any help.
Jake Egley
Inventor 2022
Inventor 2022
Solved! Go to Solution.