Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Make record boldfont

Status
Not open for further replies.

jw5107

Technical User
Jan 20, 2004
294
US
I have a report with a subreport. When the subreport has data (based on the parent/child links in the subreport) - I would like for the matching record on the main report to be in bold font type....
Below is code that I am working with that draws a rectangle around the subreport matching record and the record on the main report. Works great!! Any suggestions or examples that I can use to make the matching record be in bold font??

Me.DrawWidth = 15
If Me.PartsReqdMAINSFDelay.Report.HasData Then
Me.Line (0, 0)-Step _
(Me.Width, Me.PartsReqdMAINSFDelay.Top + Me.PartsReqdMAINSFDelay.Height), , B
End If

Thanks in advance!!
jw5107
 
Use the .FontWeight property - a setting of 400 is normal.


I have great faith in fools; self-confidence my friends call it.
-Poe
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top