Mark,
Use the Combo.ItemData to store an unique number (KlantID can be a good one,
if you don't change that number). The ItemData has the same index as the
listitem, so when you will change something in Combo1, you can find the
corresponding item with the same ItemData in Combo2.
Tip 1: be carefull with a sorted combobox; the indexes are not 0,1,2,3,4,
but perhaps 2,0,4,3,1,.. depending on the sorting. So, use this code:
Combo1.AddItem RTrim$(strAchterNaam)
Combo1.ItemData(Combo1.NewIndex) = lngBondsNummer
Combo2.AddItem Str(KlantID)
Combo2.ItemData(Combo2.NewIndex) = lngBondsNummer
Tip 2: You can set Combo1.ListIndex = 0 at the end of filling the ComboBox.

Signature
Hans Eekels (The Netherlands)
"You need at least two colours to see one thing"
www.SpecialSoftware.nl
> Hi,
>
[quoted text clipped - 23 lines]
>
> Now I want, when I change the