Updating a combo box

BMag

MagMan
Local time
Today, 00:53
Joined
Sep 24, 2004
Messages
9
I have a combo box that selects the record to be viewed on a form. That works fine. However if I use record selectors or use the wheel on the mouse to go to other records, the combo box does not change to reflect the current record. How do I make the combo box update automatically if the record changes to a different record.
 
Code:
Private Sub Form_Current()
    Me.MyComboName = Me.MyRecordID
End Sub
 
Last edited:

Users who are viewing this thread

Back
Top Bottom