View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett[_4_] Don Guillett[_4_] is offline
external usenet poster
 
Posts: 2,337
Default Make string bold?

in the vbe, type in characters and touch the f1 key

--
Don Guillett
SalesAid Software

"Adam" wrote in message
...
How do I make a string bold in VB code? I am trying to export to work, but

if
I make the bookmark bold it makes everything bold. This is because I have

two
bookmarks next to each other. I wish to know if there is a way to do it on
the VB side as it's processing the bookmark:

This is the code that I am using:
x.ActiveDocument.Bookmarks("ExtScopePrep").Range.T ext = String1 & vbCr &
"Preparation as stated above" & vbCr 'Worksheets("Ext Quote").Cells(Row,
2).Value & vbCr

Thanks!!