Hi all
I am trying to create a form 'Form1' that updates my database. Fist this form is based on a query that returns all the records in table 'employe'.
query1="Select id, name, salary from emoloyee"
Form1 is Continous and it shows me all the records and within every record I have a check box. In the form footer I have a button that increase salary of all the selected rows.
The problem is that when I check one check box, all check boxes will be checked. And that is normal cause all the check boxes have the same name.
What can I do :
First to check the rows I want
Second to update the selected rows.
Many thanks
I am trying to create a form 'Form1' that updates my database. Fist this form is based on a query that returns all the records in table 'employe'.
query1="Select id, name, salary from emoloyee"
Form1 is Continous and it shows me all the records and within every record I have a check box. In the form footer I have a button that increase salary of all the selected rows.
The problem is that when I check one check box, all check boxes will be checked. And that is normal cause all the check boxes have the same name.
What can I do :
First to check the rows I want
Second to update the selected rows.
Many thanks
Comment