Determine whether a Access checkbox is checked or not
Such a simple question, but I cannot find the answer (Google, MS help, SO): How can I check by VBA whether an unbound checkbox on an Access form is checked by the user or not? Can't find the right property. Thanks in advance! UPDATE: I used this code after the suggestions of @HansUp and @RC: Private Sub CmdTest_Click() MsgBox "Check1.Value = " & Me.Check1.Value MsgBox "Check2.Value = " & Me.Check2.Value End Sub Private Sub Form_Load() Me.Check1.Value = 25 Me.Check2.Value = 50 End Sub 2nd UPDATE: The code should be this (thanks to @David-W-Fenton): Private Sub CmdTest_Click() If Me.Check1 =