B
brian3ps
In Word 2003, how do I set the Default date in a Text form field (Type: Date,
Fill-in enabled) to the current date?
Fill-in enabled) to the current date?
Graham Mayor said:The current date is always the current date, but if you want to edit the
field, you will need instead an on-entry macro to fill the date eg assuming
the text field is bookmarked "Date1", the following will insert the current
date in that field when you tab into it, in the format of the switch - here
"dd\MM\yyyy"
Sub SetDate()
Dim sDate As Date
sDate = Format((Now), "dd/MM/yyyy")
ActiveDocument.FormFields("Date1").Result = sDate
End Sub
http://www.gmayor.com/installing_macro.htm
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>