Bold a vba string line (_)

  • Thread starter Thread starter Wayne-I-M
  • Start date Start date
W

Wayne-I-M

Hi

I have a text box within a popup form that gives users some notes (specific
to the form's data)

To make the hints easier to read I have included strings (lines) like this

& vbCrLf & String(25, "_") & vbCrLf &

Is there a way to format this 25 point line (such as 2 point, dashes, bold,
etc). Not really important but I think it would improve the UI.

Many thanks
 
On Sat, 19 Jan 2008 13:53:01 -0800, Wayne-I-M

No. A textbox can only have a single format.
Use a rich text box if you must.

-Tom.
 
--
Wayne
Manchester, England.



Tom van Stiphout said:
On Sat, 19 Jan 2008 13:53:01 -0800, Wayne-I-M

No. A textbox can only have a single format.
Use a rich text box if you must.

-Tom.
 
Back
Top