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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Enhancing Text in a Reports

Status
Not open for further replies.

ShaneBrennan

Programmer
May 19, 1999
198
GB
I need Help with my reports.<br><br>Does anyone out there now how to make a single word BOLD or Italics on a report.<br><br>It's driving me mad at the minute.&nbsp;&nbsp;I have a number of letters to create in Access and I wish to enmbolden the title of the manager in the signature part of the letter.&nbsp;&nbsp;<br><br>Can any one help, it would be greatly appreciated.<br><br>Shane Brennan
 
In design mode, right- click on the control that contains the title, and select bold from the FontWeight property.
 
if you're attempting to bold/italicize one word out of an entire text box you're pretty much out of luck.&nbsp;&nbsp;using Reports isn't the friendliest way of creating a letter from an Access database.&nbsp;&nbsp;personally i prefer the old tried and true Mail Merge method.&nbsp;&nbsp;Create the Word document, and then you can open that mail merge document directly from Access and print it out.&nbsp;&nbsp;you can either do the entire recordset, or just one record depending on how you select them.<br>the code is pretty simple, and the result is much cleaner.<br>the code looks something like this.<br><b><br>Dim WordPath, DocPath As String<br>Dim Retval As Variant<br>WordPath = &quot;C:\Microsoft Office97\Office\Winword.exe&quot;<br>DocPath = &quot;Path and name of your Mail Merge Document&quot;<br>Retval = Shell(WordPath & &quot; &quot; & DocPath, vbMaximizedFocus)<br></b><br> <p>Brian Famous<br><a href=mailto:bfamous@ncdoi.net>bfamous@ncdoi.net</a><br><a href= > </a><br>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top