Having issues getting the BorderColor to turn red in a datasheet form 'Pilot' field when it is empty AfterUpdate. I confirmed the SpecialEffect property is set to flat:
Thanks in advance. Happy New Year.
Code:
Private Sub Pilot_AfterUpdate()
If IsNull(Pilot) = True Then
Pilot.BorderColor = RGB(255, 0, 0)
End If
End Sub
Thanks in advance. Happy New Year.