If you insert a Createdate field in your form, it will reflect the date the
form was created from the form template. If you insert a Date field it will
show the system date from the PC.
If you insert a Current date form field it will behave like a Date field.
If you insert a Date form field you will need a macro to autofil the current
date on entry to the field eg
Sub FillFormDate()
ActiveDocument.FormFields("Text1").Result = Format(Date, "dd/MM/yyyy")
End Sub
where text1 is the form field bookmark name and dd/MM/yyyy is the date
pattern
If you want to insert today's date in a document that you are opening to
edit, and not have it update, then you cannot do that without a macro and
that won't be of much use unless you know your users will allow the macro to
run.
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>