
Originally Posted by
Thompyt
I am trying to find a way in which I can update the table through the form where I have control of the visibility of the CLASS, SubNetCombo, EchelonCombo....
The combo controls are bound to the table. So, each time the User selects an item from a combo, the table will be updated.
After that, you lose me. Are you trying to update data from your tblMain to another table? You can create a recordset that is a clone of your form's recordset.
You mentioned that you are using DataEntry = Yes. The form's recordset will contain only the records the User created.
A button in the form's Header could execute some code that understands the records the user just created.
So, change your form to Data Entry = Yes. Then add the following code to a button as an example.
Code:
If Me.Dirty = True Then
Me.Dirty = False
End If
Dim rs As DAO.Recordset
Set rs = Me.RecordsetClone
While Not rs.EOF
MsgBox rs![Echelon]
rs.MoveNext
Wend
Set rs = Nothing