I have a problem (maybe very simple) but I have not been able to solve it, it turns out that I'm doing a form for Visual Basic .Net records, within the same I have combobox that when I load the form for the first time everything is perfectly but when making a record I have to clean the fields (textBox) and update the comboBox of the form but I do not do the task as I would like (I left the combobox blank). The cleanup method I do the following
Public Sub limpiarCampos()
txtRFC.Text = ""
txtCodigoCiudadano.Text = ""
cboTipoAccionista.SelectedIndex = -1
end sub
I very much appreciate the suggestion that you can give me, thank you very much in advance.