I would like to create a Macro to save a copy of my document to a specified
location on my hard drive with a document name that includes the date and
data that is entered in two of the text form fields, if possible.
Jezebel - 22 Aug 2006 21:28 GMT
With ActiveDocument
.SaveAs FileName:="C:\[path]\" & .FormFields(1).Result &
.FormFields(2).Result
End With
>I would like to create a Macro to save a copy of my document to a specified
> location on my hard drive with a document name that includes the date and
> data that is entered in two of the text form fields, if possible.