aziz rasul
Active member
- Local time
- Today, 20:01
- Joined
- Jun 26, 2000
- Messages
- 1,935
I have a subform in datasheet view and a check box in the main form.
What I want to do is that if the check box is unticked, I want one of the fields in the subform to become invisible and vice versa.
This is the code so far:-
If Me!Medics = True Then
Me![COURSE INFORMATION]![Attended 1st Day].Visible = True
Else
Me![COURSE INFORMATION]![Attended 1st Day].Visible = False
End If
What am I doing wrong?
What I want to do is that if the check box is unticked, I want one of the fields in the subform to become invisible and vice versa.
This is the code so far:-
If Me!Medics = True Then
Me![COURSE INFORMATION]![Attended 1st Day].Visible = True
Else
Me![COURSE INFORMATION]![Attended 1st Day].Visible = False
End If
What am I doing wrong?