G
Guest
In Access 2003, I added a combo box to a new form (Combo0), set the Row
Source to a table and then added this afterupdate event.
Private Sub Combo0_AfterUpdate()
MsgBox (Combo0.ListIndex & " - " & Combo0.Recordset.Fields.Item(0).Value)
End Sub
The first time I select an item from the combo box, the record set ALWAYS
returns the first record even though the listindex is correct. Then it works
fine.
Source to a table and then added this afterupdate event.
Private Sub Combo0_AfterUpdate()
MsgBox (Combo0.ListIndex & " - " & Combo0.Recordset.Fields.Item(0).Value)
End Sub
The first time I select an item from the combo box, the record set ALWAYS
returns the first record even though the listindex is correct. Then it works
fine.