Hi gurp,
If you want the text on the userform to appear bold, set the font attribute for that element to bold. For example:
TextBox1.Font.Bold = True
If you want the output in the document to be bolded, set a range object to the destination, populate the range, then format the range as bold. For example:
Code:
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