I am using the following code to perform a File/New, but using the File>Open dialog, which works perfectly. Is there a way to rename the dialog so it says, for example, "New from Precedent", instead of "Open"?
Dim docNew As Document
Options.DefaultFilePath(Path:=wdDocumentsPath) = LitTemplatePath
With Dialogs(wdDialogFileOpen)
If .Display = True Then
Set docNew = Documents.Add(Template:= _
Options.DefaultFilePath(wdCurrentFolderPath) & _
Application.PathSeparator & Replace(.Name, """", ""), _
Visible:=True)
docNew.Activate
Set docNew = Nothing
End If
End With
Thanks...
Adri



