Hi there,
I have a form with about 14 checkboxes (but they are purely labels, not associated with anything)...When a user clicks on one, it brings up another form for additional information and stored in another table.
When the user is done, they click Submit, and I need ALL checkboxes to go back to False. I have seen users suggesting an update query but my checkboxes are LABELS so I can't put a table in the query.
I was thinking of putting some VBA code in the OnClick event of "Submit"...Something like
For i= # to #
me.checkbox(i) = false
Next i
However that doesn't work. Any suggestions?
I have a form with about 14 checkboxes (but they are purely labels, not associated with anything)...When a user clicks on one, it brings up another form for additional information and stored in another table.
When the user is done, they click Submit, and I need ALL checkboxes to go back to False. I have seen users suggesting an update query but my checkboxes are LABELS so I can't put a table in the query.
I was thinking of putting some VBA code in the OnClick event of "Submit"...Something like
For i= # to #
me.checkbox(i) = false
Next i
However that doesn't work. Any suggestions?