2003 format text bold & normal in one field

  • Thread starter Thread starter ProFitts
  • Start date Start date
P

ProFitts

In Access 2003 I need to display text in both bold and normal fonts such as
Participation: 100%
where the text "Participation:" would be bold and the variable "100%" would
be printed in normal weight. This is supported in 2007 memo fields, but my
customer is using 2003.
I cannot use two fields as the length of the fields will vary. In many cases
the variable field will be several lines long.
I am considering placing the data into HTML pages and printing from Word.
I would appreciate suggestions for better approaches
Thank you!
 
If your bold text is "Participation:", you can try do this with a label and
text box that share the same Top and Left properties. Set the label caption
to "Participation:" and make it bold. Set the text box control source to:
=Space(25) & [MemoFieldName]

Allow the text box to expand.
 
Back
Top