Access 2000 - I am creating several documents and I need to highlight certain areas by printing special symbols (ie, Common Bullets, char(43)). I am printing the documents based on a predfined .dot file. At some point I want to change the font, print the special character and change the font back. This is the code that I am using, merely bolding a period:
Any help is appreciated. Anticipated thanks.
Code:
With objword
.Selection.Font.Bold = True
.Selection.TypeText Chr(183)
.Selection.Font.Bold = False
End With