B
Ben Hunsberger
I have two datasets
ds1, ds2 as mytypedds
I programmatically make a change to a row in ds1
row = ds1.tbl1(0)
row.qty = 5
I then import this row to ds2
ds2.clear()
ds2.tbl1.importrow(row)
row2 = ds2.tbl1(0)
Strangly enough row2.qty = 0, unless I preceed with row.acceptchanges.
What gives?
ds1, ds2 as mytypedds
I programmatically make a change to a row in ds1
row = ds1.tbl1(0)
row.qty = 5
I then import this row to ds2
ds2.clear()
ds2.tbl1.importrow(row)
row2 = ds2.tbl1(0)
Strangly enough row2.qty = 0, unless I preceed with row.acceptchanges.
What gives?