using FIND then updating a form
I'm new so excuse my ignorance.
I'm using the FIND method to search a record set. The criteria for the find is a value selected from a dbcombo on a form. Once the
user has selected a value in the dbcombo I do the following
Adodc1.Recordset.MoveFirst
Adodc1.Recordset.Find "airline_name = '" & DataCombo1 & "'"
I get to that record, or at least I seem to. I would then like to update a bunch of text boxes based on the new record position.
Text2.Text = Adodc1.Recordset("webid")
The problem is that at this point I seem to be still on the old record even though the find was successful. Does the find also
reposisiton you at that record found and if so should'nt the
fields in that record be available to populate form fields? Thanks