I want to open a save as dialog for the user via VBA. I found this method:
Application.Dialogs(xlDialogSaveAs).Show ("c:\my_folder\")
from this previous question save as dialog excel code
Obviously, it does not work in Visio. What is the corresponding Argument for Visio? Cant seem to find a list of all possible options online.
Another possibility I found is
Application.GetSaveAsFilename
but that does not work in Visio either!
Thanks for any hints!


ThisDocument.SaveAs "path\filename.vsd"orMe.Application.ActiveDocument.SaveAs(docPath)or save as new pathMe.Application.ActiveDocument.SaveAsEx(newDocPathstrSaveFileName = ahtCommonFileOpenSave( OpenFile:=False, Filter:=strFilter, Flags:=ahtOFN_OVERWRITEPROMPT Or ahtOFN_READONLY)