Is there a way to create a Word Document that will have a TextBox that once filled in will automagically fill in all other associated TextBoxes with same information? Thanks, Jeremy
Maybe I am not understanding your question correctly. However, with the title "dynamic word header/footer" I assume you want to set the header and footer fields with code.
The following would accomplish that goal:
'-------------------------------------------
With ActiveDocument.Sections(1)
.Headers(wdHeaderFooterPrimary).Range.Text = "Header text"
.Footers(wdHeaderFooterPrimary).Range.Text = "Footer text"
End With
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.