adams.bria
Registered User.
- Local time
- Today, 15:43
- Joined
- Apr 28, 2010
- Messages
- 41
I have about 25 fields on a form all locked. If any of the fields are null, I do not want that field to display. I was able to create this on one field by attaching it to the on load event, however, I am not sure how to add the other fields. Thanks!
Code:
Private Sub Form_Load()
If IsNull(Me!Pref_Athl_Assis) Then
Me!Pref_Athl_Assis.Visible = False
Else
End If
End Sub