S
Senad Isanovic
I want to allow the user to save the document as soon as the new document is
created. I load the SaveAs dialog box (AutoNew),
Sub AutoNew()
Application.FileDialog(msoFileDialogSaveAs).InitialFileName =
Options.DefaultFilePath(wdDocumentsPath)
Application.FileDialog(msoFileDialogSaveAs).Show
End Sub
But when the user enters the name of the file and then press Save buttot the
active document is still called "Document1" and not the name that the user
entered. I don't want to use ActiveDocument.Save and save the doc from the
code. I want to allow user to save the doc and choose the path ant the
filename.
created. I load the SaveAs dialog box (AutoNew),
Sub AutoNew()
Application.FileDialog(msoFileDialogSaveAs).InitialFileName =
Options.DefaultFilePath(wdDocumentsPath)
Application.FileDialog(msoFileDialogSaveAs).Show
End Sub
But when the user enters the name of the file and then press Save buttot the
active document is still called "Document1" and not the name that the user
entered. I don't want to use ActiveDocument.Save and save the doc from the
code. I want to allow user to save the doc and choose the path ant the
filename.