R
Rob
I am trying to change the font color for a particular
record in a report based on the value of a check box for
that record. If the box is check (value = 1) then I want
the font for that entire record to be red. I've tried
the following with no luck:
Private Sub Detail_Format(Cancel As Integer, FormatCount
As Integer)
If Nz(Me!Check119, "") = "1" Then
Detail.BackColor - vbRed
Else
Detail.BackColor = vbWhite
End If
End Sub
I understand with this I am attempting to change the back
color of the entire detail area but I cannot see how to
access a text box's font color. Any help would be great!
Rob
record in a report based on the value of a check box for
that record. If the box is check (value = 1) then I want
the font for that entire record to be red. I've tried
the following with no luck:
Private Sub Detail_Format(Cancel As Integer, FormatCount
As Integer)
If Nz(Me!Check119, "") = "1" Then
Detail.BackColor - vbRed
Else
Detail.BackColor = vbWhite
End If
End Sub
I understand with this I am attempting to change the back
color of the entire detail area but I cannot see how to
access a text box's font color. Any help would be great!
Rob