Hi All,
how to write a script for a button to select all my checkbox fields

I'm Using MS Access 2000
thank you
how to write a script for a button to select all my checkbox fields

I'm Using MS Access 2000
thank you

dim myupdate As String myupdate="UPDATE tblCustomers SET nameofmycheckboxfield=TRUE;" DoCmd.SetWarnings False DoCmd.RunSQL myupdate DoCmd.SetWarnings True Me!ListBoxName.Requery
dim myupdate As String myupdate="UPDATE tblCustomers SET nameofmycheckboxfield=TRUE;" DoCmd.SetWarnings False DoCmd.RunSQL myupdate DoCmd.SetWarnings True Me!ListBoxName.Requery
Comment