View Full Version : Navigation


Angello Pimental
05-21-2001, 12:09 PM
Greetings Everyone...
I have a bit of a problem, and was hoping some nice person out there would have the solution for me.

Basically I have a form where a user can navigate using a combobox (by selecting which record he/she wishes to see), or by using "Next", "Previous" command buttons.
My problem is, when the user uses the command buttons, the name of the record in the combobox does not change to the related record.

Any suggestions??

Thnx

Jack Cowley
05-21-2001, 02:11 PM
The combo box is unbound so it will not show the changing records. You can add code similar to this to the Forms On Current event to have the combo box show the current record...

Me.YourComboBoxName = Me.FieldThatContainsTheSameDataAsTheCombosBoundCol umn

Angello Pimental
05-22-2001, 07:17 AM
Thnx for your help Jack... it worked perfectly