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
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