Change Font Weight Within Textbox

  • Thread starter Thread starter Max Moor
  • Start date Start date
M

Max Moor

Hi All,
Is there a simple way, like a format function call, that will allow
me to change the font weight in the control source line of a textbox?
What I want to do is include the data's label in bold, and the data
itself in normal weight, in the control source. This is to simplify the On
Open code for a configurable report.

- Max
 
Hi All,
Is there a simple way, like a format function call, that will allow
me to change the font weight in the control source line of a textbox?
What I want to do is include the data's label in bold, and the data
itself in normal weight, in the control source. This is to simplify the On
Open code for a configurable report.

- Max

Unfortunately, no. A normal Access textbox doesn't support multiple
fonts or font settings, only one. You can, however, set the boldness
of a Label control independently of the boldness of the associated
Textbox control; you'll need to do it in VBA though, not in the
control source.
 
Back
Top