Greetings all,
tina t on utteraccess http://www.utteraccess.com/forum/ind...howuser=178721 said it clear enough for me to understand.
Make the combo box unbound, and then add code in the After Update event to point to the record to be modified.
After further digging, I found some references to the Combobox wizard to point to a specific record.
I created a new form and set its source to one of the tables. Made a combbox with the wizard and got the code
Code:
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[Student_ID] = " & Str(Nz(Me![Combobox_Name], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
After renaming the unbound comboboxes, the code was placed in the proper place.
Now, both forms work as expected.
From this point on, I will try to be as possible, and if I cross post, will clearly indicate with the appropriate links.
With gratitude,
Mark