Format parts of text in a text box

R

Ron

I would like to have some of the text in a text box
formatted differently - e.g. bold or Italic.

How is that done?
 
B

Brian

Ron said:
I would like to have some of the text in a text box
formatted differently - e.g. bold or Italic.

How is that done?

Can't be done. You would need to use a Rich Text Box ActiveX control (yuk).
 
P

PC Datasheet

Use two textboxes spaced appropriately. In one, set for your standard font.
In the other set for Bold or Italic as you need. You will need one or more
of the following functions to split your original string into two strings:
Left, Mid, Right.
You can find info on these in the Help file.
 
Top