Hi all,
I have a macro that runs on the Sub Document_Open to try to remind the user to save the document (Word 2002) before they start editing it. I have found the following code that does this nicely, however I would like to disable the "Cancel" button and have the dialog window point to the user's My Documents" folder instead of the location the form was opened from.
Thanks
I have a macro that runs on the Sub Document_Open to try to remind the user to save the document (Word 2002) before they start editing it. I have found the following code that does this nicely, however I would like to disable the "Cancel" button and have the dialog window point to the user's My Documents" folder instead of the location the form was opened from.
Code:
Sub ShowSaveAsDialog()
Dim dlgSaveAs As Dialog
Set dlgSaveAs = Dialogs(wdDialogFileSaveAs)
dlgSaveAs.Show
End Sub
Thanks