D
Dave
Access 2003
I have a form that has 3 "yes/no" boxes on it (it will eventually have 8 or
10 but the approach should be the same)
I have a button on the form that when clicked should "check" all the
checkboxes.
This is my code on my button but it is only checking the first check box.
Private Sub cmdSelectAll_Click()
Me.Transcripts = True
Me.Application = True
Me.Agreement = True
End Sub
Any suggestions what I am doing wrong?
Thanks for looking
Dave
I have a form that has 3 "yes/no" boxes on it (it will eventually have 8 or
10 but the approach should be the same)
I have a button on the form that when clicked should "check" all the
checkboxes.
This is my code on my button but it is only checking the first check box.
Private Sub cmdSelectAll_Click()
Me.Transcripts = True
Me.Application = True
Me.Agreement = True
End Sub
Any suggestions what I am doing wrong?
Thanks for looking
Dave