what event for conditionally visible property?

Z

zSplash

In my subform, I want a field to be visible if another field's value is
"originator". I think I have the code, but don't know what event to put it
in.
If txtPartyType.Value = "originator" Then
DOB.Visible = True
Else
DOB.Visible = False
End If
Please, what event shall I use?

TIA
 
D

Damon Heron

If your subform is in singleform view, then put it in the Current Event

HTH
Damon
 
Top