BindingSource between textboxexs and data grid viev

G

Gian Paolo

Hi all with .net 2.0 i have a dataset and a tableadapter.
i fill the tableadapter and then for the data grid view a do this...

bdnSedi.DataSource = dsInterventi;
bdnSedi.DataMember = "SEDE";
DGV.DataSource = bdnSedi;

and for my textboxexs this
txtTextBox[1].DataBindings.Add("Text", dsInterventi, "CLIENTI.CLRAGS");

my question is: when the user select a different row in the datagrid view i
would like to update de text of the textboxes... how to do this????

regards
gian paolo
 

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

Top