Hi
I am using the following code to create a flash on the PStatus field within my form. The form is a tabular list of many records and I only want the records with a P1 text in the Pstatus field to flash but all feilds are flashing:
Is it possible what I am trying to do?
Thanks
I am using the following code to create a flash on the PStatus field within my form. The form is a tabular list of many records and I only want the records with a P1 text in the Pstatus field to flash but all feilds are flashing:
Private Sub Form_Timer()
Me.Requery
If [PStatus] = "P1" Then
If [PStatus].ForeColor = vbBlack Then
[PStatus].ForeColor = vbRed
Else
[PStatus].ForeColor = vbBlack
End If
End If
End Sub
Is it possible what I am trying to do?
Thanks