C chris1 via AccessMonster.com Nov 30, 2006 #1 I have an unbound checkbox on my form. How can I check the value without it being bound to a field on a table?
I have an unbound checkbox on my form. How can I check the value without it being bound to a field on a table?
R ruralguy via AccessMonster.com Nov 30, 2006 #2 The control has a value without being bound to a field. It is the default property for the control so If Me.CheckBox = True Then will indicate the CheckBox is checked.
The control has a value without being bound to a field. It is the default property for the control so If Me.CheckBox = True Then will indicate the CheckBox is checked.