Retrieving checkbox results from access db through form

C

County

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
 
J

Jens Peter Karlsen [FP-MVP]

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