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

Formatting

Status
Not open for further replies.

jbh1378

Technical User
Dec 11, 2001
15
US
I have an Access Form with quite a few fields. When the user double clicks on any of the text boxes, I have entered the code to open a new form which displays the directions for each specific field. How can I do the formatting in VB. To Underline, bold certain text?

If there is somewhere where I can find all the formatting that would be great.

Thanks-
jh
 
With textboxes, you have to bold all or none. The only way to bold just some words and not others is to use the rtf text boxes.

For regular textboxes:
Text1.FontBold = True
Text1.FontItalic = True

scarfhead
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top