I'm making a form that has checkboxes and want to handle the checked checkboxes in code. The problem is that I don't know how to do it! Here is what I've tried so far:
Code:
Private Sub cmd_update_Click()
On Error GoTo Err_cmd_update_Click
Dim rowsToUpdate As String
If check_a.Value Then
rowsToUpdate = rowsToUpdate & "A"
End If
Leave a comment: