B
Bob Waggoner
On a continuous form, I have the following code:
Private Sub pBin822IANCAudited_AfterUpdate()
If pBin822IANCReadytoAudit = True Then
pLI822IANCCARNO.BackColor = 255
Else
pLI822IANCCARNO.BackColor = -2147483643
End If
End Sub
The problem is, if I make any of them true, they all go true and the back
color goes red or white for all of them. How do I limit the back color change
to the one record in the continuous form?
Private Sub pBin822IANCAudited_AfterUpdate()
If pBin822IANCReadytoAudit = True Then
pLI822IANCCARNO.BackColor = 255
Else
pLI822IANCCARNO.BackColor = -2147483643
End If
End Sub
The problem is, if I make any of them true, they all go true and the back
color goes red or white for all of them. How do I limit the back color change
to the one record in the continuous form?