I have hundreds of records in my database. Each has a check box. Is there any option to select or unselect all those check boxes in single click?. Please suggest.
Thanks.
Thanks.
UPDATE tblA SET YesNo_field = True or UPDATE tblA SET YesNo_field = False
currentdb.execute ("UPDATE tblA SET YesNo_field = False")
UPDATE tblA SET YesNo_field = True or UPDATE tblA SET YesNo_field = False
currentdb.execute ("UPDATE tblA SET YesNo_field = False")
currentdb.execute ("UPDATE [paper setting] SET YesNo_fieldname = False")
Me.requiry
Comment