I have a form with multiple records on it. These records fall into two categories: approved, or not approved. Records that are approved I would like to highlight in green. However the following code only looks at the first record and applies the results to ALL the records:
Private Sub Form_Load()
If intStatus = 2 Then
Me.RecordTitle.ForeColor = RGB(0, 255, 0)
End If
End Sub
How can I have this logic applied to each individual record?
Many thanks in advance!
Eric
Private Sub Form_Load()
If intStatus = 2 Then
Me.RecordTitle.ForeColor = RGB(0, 255, 0)
End If
End Sub
How can I have this logic applied to each individual record?
Many thanks in advance!
Eric