Updating data bound listbox

  • Thread starter Thread starter VB Programmer
  • Start date Start date
V

VB Programmer

I have a listbox which is data bound to a query that incorporates several
tables.

I want to be able to update the listbox with new items (from another
"master" listbox), remove existing items, etc... then update the db with the
new contents of the listbox after the user clicks on a Save button.

Not sure exactly how to do this. Any suggestions?

Thanks.
 
Everytime you databind the a component, the values get updated, so it is matter of calling the function/code you use to databind the list.
 
Back
Top