I want to be able to update a table from a form, but after i have selected the record to update by using a combination of combo boxes.
The table that contains the record I want to update is called 'tblNames' and contains multiple columns such as 'ChildID', 'FirstName', 'LastName', 'FullName', 'ClassID' and 'ClassName'
The first combo box filter is called 'cboClass' and its row source is a table called 'tblClass'. This lists all the available classes. This has an after_update event which re-queries my second combo box filter called 'cboName'.
This then allows the user to select a name of a child in that class. So far this works...
I now need to display the record in 'tblNames' that is equal to the name selected in 'cboName' but i dont know how to do this. Is it through text boxes that have a control source of tblNames?
Can anybody help?