Datagrid question

wooglin

Newcomer
Joined
Oct 24, 2003
Messages
7
Is it possible to read from one table into a datagrid, edit/update the information once it is in the datagrid, then write it to another table?

IE., Datagrid pulls info. from Table A., I make some changes to the info. while its pulled into the Datagrid, then update the info. into Table B.

Thanks!
 
Yes, it's possible.
populate datagrid with DefaultView or other view ( for update),
But, you have to save updated data to other table by programming
 
Back
Top