Format parts of text in a text box

  • Thread starter Thread starter Ron
  • Start date Start date
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?
 
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).
 
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.
 
Back
Top