Header Information

S

Stacy

Hello... I need to develop a form that will rpompt the user for a
specific piece of text they need to enter, and then auto-insert this
int the document header... is this possible with vba? the document
stays the same, it will be the header that changes with every user.
thank you
 
J

Jonathan West

Stacy said:
Hello... I need to develop a form that will rpompt the user for a
specific piece of text they need to enter, and then auto-insert this
int the document header... is this possible with vba? the document
stays the same, it will be the header that changes with every user.
thank you

The simplest way of doing this is to define a custom document property for
the document, have the form update the property, and then have a DOCPROPERTY
field in the header which reflects the property's contents.
 
Top