Kaykayme said:
I am trying to format the text passed to a bookmark from a userform.
Any suggestions?
The process is exactly like formatting any other text in a document.
Assuming your macro knows the name of the bookmark, it goes something like
this...
With ActiveDocument.Bookmarks("theBookmarkName").Range
.Font.Name = "Arial"
.Font.Size = 16
.Font.Bold = True
' ...
End With
If you have some other problem, please be more specific about exactly what
you want to do, what your current code contains, and what's happening that
isn't what you want.
--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.