M
Michael
Help... I am using the following code to prompt the user for a filename to
save the custom properties in XML format:
Dim Message, Title, Default, MyValue
Message = "Enter a file name to generate the XML Definitions"
Title = "Demo InputBox"
Default = "D:\Visio\customprop.xml"
MyFile = InputBox(Message, Title, Default)
If MyFile = "" Then End
What I really want is to open something like the "Save As" dialog, so the
user can select an existing file or type a new
file name. What I want back is the full qualified filename the user selected
or entered...
Can this be done in Visio VBA (I am using 2000)
TIA
save the custom properties in XML format:
Dim Message, Title, Default, MyValue
Message = "Enter a file name to generate the XML Definitions"
Title = "Demo InputBox"
Default = "D:\Visio\customprop.xml"
MyFile = InputBox(Message, Title, Default)
If MyFile = "" Then End
What I really want is to open something like the "Save As" dialog, so the
user can select an existing file or type a new
file name. What I want back is the full qualified filename the user selected
or entered...
Can this be done in Visio VBA (I am using 2000)
TIA