I am using vb6.

I want to solve one problem to define clearly i will use a simple example.

Take a form and put a combobox in it



Code:
Private Sub Form_Load()
Combo1.AddItem "Apple"
Combo1.AddItem "Banana"
Combo1.AddItem "orange"
Combo1.AddItem "Lemon"
End Sub
and on change event



Code:
Private Sub Combo1_Change()
...