repeat a text field in word

C

cgijag

I found how to make a text field repeat using the text field in forms but is
it possible to use the Active X text field and create a repeating field?
 
G

Greg Maxey

Yes.

Something like this in the master textfield change event:

Private Sub TextBox1_Change()
ThisDocument.TextBox2.Value = ThisDocument.TextBox1.Value
End Sub
 
C

cgijag

Thank you Greg. That worked beautifully! This will save alot of time for
people filling out the multiple forms we have. Thank you again!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top