Don't use text boxes. Use frames or tables.
Form fields write their entries to bookmarks - by default Text1, Text2 etc.
You can reproduce the information they contain with REF fields. You will
have to force an update to the REF fields by using an update macro on exit
from the last field that requires repetition. eg that from
http://www.gmayor.com/installing_macro.htm or
Sub UpdateFieldsAnotherWay()
Options.UpdateFieldsAtPrint = True
Application.ScreenUpdating = False
PrintPreview = True
PrintPreview = False
ActiveDocument.ActiveWindow.View.Type = wdPrintView
Application.ScreenUpdating = True
End Sub
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>