Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need to Print Special Character in word doc.

Status
Not open for further replies.

regava

Programmer
May 24, 2001
152
US
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:
Code:
With objword
 .Selection.Font.Bold = True
 .Selection.TypeText Chr(183)
 .Selection.Font.Bold = False
End With
Any help is appreciated. Anticipated thanks.
 
Inspect the code generated by the macrorecorder when doing your stuff manually in word.

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
PHV, thank you very much.
Until next time have a good time.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top