View Single Post
 
Old 05-07-2015, 02:56 PM
AdamE AdamE is offline Windows 7 32bit Office 2010 32bit
Novice
 
Join Date: May 2015
Posts: 1
AdamE is on a distinguished road
Default Still Need Help

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

Last edited by macropod; 06-05-2015 at 05:23 AM. Reason: Added QUOTE & CODE tags (with code formatting)
Reply With Quote