create the new row like this...
Dim rw as datarow = dataset.mytable.newrow
rw.itemarry = rowYouWantToCopyValuesFrom.itemarray
'now manipulate values in the 'new' row.
rw("fieldname") = "some string"
dataset.mytable.rows.add(rw)
-----Original Message-----
From: Discussion forum for developers using Windows Forms to
build apps
and controls [mailto OTNET-WI
NFORMS DISCUSS.DEVELOP.COM]On Behalf Of
Chris Bordeman
Sent: Thursday, October 12, 2006 11:07 AM
To: DOTNET-WINFORMS DISCUSS.DEVELOP.COM
Subject: Re: [DOTNET-WINFORMS] Mono for WinForms
Hi all. I've added a DataRow to a DataSet. I want to
change just a few
field values and add another identical row.
Is it possible to do this w/o reassigning all the fields?
|