Using Save As in a Macro

D

dave

Is there a way to include a "Save as" command in a macro
which will prompt the user to enter a file name and then
proceed running the macro. I can set up the macro to save
the file with a predetermined name, but want to be
prompted for a name? (I'm using Word 97)
 
R

Rick Stebbins

Look into help for programming the Dialog object, i.e.
Word.Dialogs(wdDialogFileSaveAs)
 
Top