Get Data from Table 1 To ......

Nerine

Member
Joined
Nov 24, 2005
Messages
13
Location
Nede..Expel...???
Programming Experience
1-3
Anyone know how to get data from field1 in table1 to field 2 in table 2...?
anyone know please tell coz i need it :(


p/s: if i post on wrong section please correct me ;)
 
VB.NET:
dim dr as datarow = yourdataset.tables(table1index).rows(rowindex)
dim value as string = cstr(dr(0)) // if it is a string that is.
 
dr = yourdataset.tables(table2index).rows(rowindex)
dr(1) = value
 
Back
Top