how to update the COMBOBOX TEXT ???

  • Thread starter Thread starter thomaz
  • Start date Start date
T

thomaz

When i make an update in my database, the modifications
are showing in all TEXTBOX but i can´t see the new values
in a combobox text. If i close the form and open it again
the new values will appear in the combobox text.
How can i see the values in a COMBOBOX text after an
update without closing and opening the form ???
Thanks...
 
thomaz said:
When i make an update in my database, the modifications
are showing in all TEXTBOX but i can´t see the new values
in a combobox text. If i close the form and open it again
the new values will appear in the combobox text.
How can i see the values in a COMBOBOX text after an
update without closing and opening the form ???
Thanks...
if the combobox is bound to the data, you will need to reset the
datasource and call databind() again.
 
Back
Top