Unbound CheckBox on a Form

  • Thread starter Thread starter chris1 via AccessMonster.com
  • Start date Start date
C

chris1 via AccessMonster.com

I have an unbound checkbox on my form. How can I check the value without it
being bound to a field on a table?
 
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.
 
Back
Top