I have this code
It fires twice !!! ( I put a breakpoint and checked it )
after the first time the results are ok, index = whatever I chosed in the combo box, but the 2nd time always returns selectedindex=0 and displays the first item in the combo box (
Visual Basic:
Private Sub cmbEditMessenger_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmbEditMessenger.SelectedIndexChanged
txtEdit.Text = colEdit(cmbEditMessenger.SelectedIndex)
End Sub
It fires twice !!! ( I put a breakpoint and checked it )
after the first time the results are ok, index = whatever I chosed in the combo box, but the 2nd time always returns selectedindex=0 and displays the first item in the combo box (