filling text boxes from a combo box

  • Thread starter Thread starter JT
  • Start date Start date
J

JT

I have a form with 6 text boxes and a combobox. I have
been able to add data from the text boxes to the combo
box.

What I would like to do know is let the user select a row
from the combobox and populate the 6 text boxes with the
data (where they can edit the data)

AND (2) once the data has been changed I want to update
the combobox with the new data.

Will I have to delete the combobox row and add a new row
or can I keep the same row and just update the
information.

Any help getting started would be appreciated. Thank you.
 
You can keep the same row and update the information. I gave you code on
filling the textboxes.

Just loop through your list and find the row (recall that the first row is
zero based).

then

..list(rw,columnNumber) = Textbox1.Text

as an example.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top