adding rows from one datatable to another

  • Thread starter Thread starter Sam
  • Start date Start date
Sam,
NOOOOOOOOOOOO !!!!!!! :-) I think we'll never understand each other on
this one, LOL
I don't want to add a table to two datasets. I just want to :

I know however what I showed you is the same as

\\\
dim dt as datatable = dtold.clone
for each row as datarow in dtold
dt.importrow(row)
next
///

However mayby you want to do it selective than you need this one.

:-)

Cor
 
hi guys..

Pls be careful when using the below options if your appln architecture is
using rowstates
1) importrow does not modify the rowstate as added.

2) methods like remove() are not advisable if what you want to do is just
delete it is like calling delete and acceptchanges.

3) i too did not understand this one..

Tnx
 
Back
Top