View Single Post
 
Old 03-12-2012, 03:39 PM
gurp99 gurp99 is offline Windows Vista Office 2007
Novice
 
Join Date: Apr 2010
Posts: 18
gurp99 is on a distinguished road
Default

I am a novice user to VBA. With the code you supplied, what needs to be changed? just the text in red?

Dim Rng As Range
Set Rng = ActiveDocument.Bookmarks("SomeBookmark").Range
With Rng
.Text = TextBox1.Text
.Font.Bold = True
End With
ActiveDocument.Bookmarks.Add "SomeBookmark", Rng
Reply With Quote