Retrieving checkbox results from access db through form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form with a query to a database which was initially populated with
check boxes, how can I retrieve the check with on or off.
Thanks
 
Say you stored it as 0 or 1 in the database then it would be something
like this:
if (DBResult = 1) Then checkbox.checked = True.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
Back
Top