Question : Access database form check box

I have an Access form that one of the fields is a checkbox.
I want to have a checkbox on the form header taht if selected will check all the checkboxes below it.

Answer : Access database form check box

private sub CheckBoxName_afteupdate()

currentdb.execute "Update TableName set [checkFieldName]=" & me.checkboxname

me.requery
end sub
Random Solutions  
 
programming4us programming4us