Kryst51
Singin' in the Hou. Rain
- Local time
- Today, 15:43
- Joined
- Jun 29, 2009
- Messages
- 1,896
I have a continuous subform which is bound to a table. The parent form is unbound. I have an unbound checkbox on the parent form. I would like to check that check box, and have it set the checkbox for each record displayed in the subform. (SelectAll/DeselectAll)
The subform adds data only. From the reading that I have done in a book I own and on the internet it seems as if a couple of things need to happen.
1. I need to create a recordset from only the records currently in the subform. I want to use ADO.
2. I then need to loop through each record and perform my If..Then and update SQL. (Currently my SQL only updates the selected record on the form if I run it from the QBE. Which tells me that it is only recognizing the selected record)
I understand, at least in theory, how to do #2. What I don't know how to do is #1. How do I create a recordset of the records on the subform (all newly entered, if the form is closed and reopened it will be blank with no way to find out what was just entered)?
The checkboxes that I want to select or deselect are a field in my underlying table and is only used as a temporary reference so that when I click a button things will happen with the selected records.
The subform adds data only. From the reading that I have done in a book I own and on the internet it seems as if a couple of things need to happen.
1. I need to create a recordset from only the records currently in the subform. I want to use ADO.
2. I then need to loop through each record and perform my If..Then and update SQL. (Currently my SQL only updates the selected record on the form if I run it from the QBE. Which tells me that it is only recognizing the selected record)
I understand, at least in theory, how to do #2. What I don't know how to do is #1. How do I create a recordset of the records on the subform (all newly entered, if the form is closed and reopened it will be blank with no way to find out what was just entered)?
The checkboxes that I want to select or deselect are a field in my underlying table and is only used as a temporary reference so that when I click a button things will happen with the selected records.