bold issue

M

Mark

Hi,

I have a text box on a report and I am trying to figure
out some code. As seen below, I have the employee first
and last name being displayed with the first letters of
their name in upper case.

="Name: " & StrConv([EmployeeFName],3) & " " & StrConv
([EmployeeLName],3) & " " & "( Emp. ID: " & [EmployeeID]
& " ; wk # " & [WorkPhone] & " ; ext # " & [ExtNumber]
& " ) "


I would like to add the record count in front of this code
by using CurrentRecord. As in, =[CurrentRecord]
&"Name: "&StrConv([EmployeeFName]....

Is there a way I can have CurrentRecord in bold and the
rest of the code not in bold? Not sure if this is
possible. Would something like FontBold be close?

Thanks for the help!!!!!!!!
 
J

John Vinson

Is there a way I can have CurrentRecord in bold and the
rest of the code not in bold?

Only by displaying it in a separate textbox rather than concatenating
it into the same string.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top