Unbound CheckBox on a Form

  • Thread starter chris1 via AccessMonster.com
  • 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?
 
R

ruralguy via AccessMonster.com

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.
 
Top