Hi

I have a combobox "cboPreviousPreparationEntries". Now I have a sub

Private Sub cboPreviousPreparationEntries_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cboPreviousPreparationEntries.SelectedIndexChanged

So this runs when the selected value of combo box is changed. Now for some reason in the code i need to put

cboPreviousPreparationEntries.SelectedIndex = 2

But at that time it calls the sub automatically as the index is changed, but I DO NOT WANT it to call that sub mentioned on top. Is that possible?

I hope i made myself clear.