View Single Post
 
Old 07-30-2015, 09:43 AM
tddfs tddfs is offline Windows 7 32bit Office 2007
Novice
 
Join Date: Jul 2015
Posts: 3
tddfs is on a distinguished road
Default

I read your input over and changed to this

Code:
Private Sub CommandButton1_Click()

With ActiveDocument
    .Range.Text = TextBox1
End With

UserForm1.Hide

End Sub
This is working fine, but the reason I was using bookmarks was to place the text input into a specific place within the document (actually 3 places). So I was wondering if there is a better way other than bookmarks? I'm going to work with fields to see if that can achieve the goal, but right now bookmarks appear to be the best bet. Thanks
Reply With Quote