I have an mdb that has a field called “active”. It is a yes/no field. In vb6 I have a form that has a checkbox. for the field active called chkActive I don’t seem able to populate the “active” field in my access database when i click my cmdSubmit button on the form.
cmdSubmit_click()
chkActive.Value = rsProj!Active
and when i show the rows on my form it will not show the checkbox on or off.
rsProj!Active = chkActive.Value
Thank you for any assistance you can give me.