Hi,
I'm trying to customize a report to have a differnt color depending on the value for each record. I know I've done this before and forgot how. I tried using this:
Private Sub Report_Open(Cancel As Integer)
txtPriority.SetFocus
If Me.txtPriority.Value = "1" Then
txtPriority.ForeColor.Value = "255"
End If
End Sub
But that doesn't work. Any suggestions appreciated!
"The greatest risk, is not taking one."