adding pages

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've got a form with multiple text boxes on it that I need to copy to successive pages. How do I copy / or add pages that would include the text boxes from page one to go to page 2,3,4,etc.?

Thanks for any help.
 
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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top