I am an absolute first timer in creating a Userform, but have managed to do it and am now having the same issues that OP had. However, when she said
Quote:
"thank you! i actually just used:
.Fields.Update
and that worked perfectly lol just took me forever to find"
|
I have absolutely no clue where she was putting the .Fields.Update line.
the only code i have entered is associated with my command button and it is this:
Code:
Private Sub CommandButton1_Click()
With ActiveDocument
.Bookmarks("Text1").Range _
.InsertBefore TextBox1
.Bookmarks("Text2").Range _
.InsertBefore TextBox2
End With
UserForm1.Hide
End Sub
Please help me figure out how to update the bookmark cross-references I have throughout my document.
Thanks!
Adam