Private Sub CmbTruckTyp_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CmbTruckTyp.SelectedIndexChanged
TxtTruckTyp.Text = CmbTruckTyp.Text
End sub
So what I am trying to do is when the button is clicked the combobox (CmbTruckTyp) is refreshed, then at the same time the previous selected item is focussed. This should be achieved by reading the value on the textbox (TxtTruckTyp.Text).
Now, the problem is when I click the button, the textbox becomes BLANK and the combobox refreshes without selected the previous selecteditem.
makes the TxtTruckTyp.Text to be empty. Why? Shouldn't this line of code ONLY update the combobox dropdownlist?
Thanks
September 6th, 2012, 05:46 PM
benuto
Re: Refresh Combo Box
try remember previous selected item in another variable, then check.
As far i know, CmbTruckTyp.SelectedItem raises cmbtruck.indexchanged event,maybe that is the problem.
can combobox.update change selecteditem??? ;)