Formatting text programmatically

M

mike

I'm working in Visual Studio and I'm formatting text for a doc I'm
creating. I've got a hard coded string "President" and I want it bold.
Then I add the name of the person after it in non bold separated with a
tab. Then I put that in a cell in the document.

Suggestions?

thanks
Mike
 
D

Doug Robbins - Word MVP

Use:

Dim arange As Range
Set arange = ActiveDocument.Tables(1).Cell(2, 2).Range
arange.Text = "President" & vbTab & "Name of Person"
arange.Words(1).Font.Bold = True


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top