jpkeller55
Technical User
I am using the following code to make a record BOLD based on the value of another field on a report in Access 2000. How can I modify this code to make it BOLD and ITALIC?
Thanks for your help!
Code:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If MedcoPt <> 0 Then
PatientName.FontBold = True
Else
PatientName.FontBold = False
End If
End Sub