Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub NewFileName_Word()
Application.Dialogs(wdDialogFileSaveAs).Show
End Sub
Sub NewFileName_Word()
With Application.FileDialog(msoFileDialogSaveAs)
.InitialFileName = "MyDocument.doc"
.Show
End With
End Sub
Sub NewFileName_Word()
With Application.Dialogs(wdDialogFileSaveAs)
.Name = "MyDocument.doc"
.Show
End With
End Sub