Hi,
I am trying to clone a DataRow (see below) but I have a syntax error
refering to the implicit conversion from object to datarow.
How can I convert the object into a datarow without itterating through the
elements?
Thanks
Doug
Dim dr, drNew As DataRow
'Add Row 0 with Manufactured Product details
dr = dtOrderDetails. Rows(0)
drNew = dtOrderDetails. NewRow
drNew.ItemArray = dr.ItemArray.Cl one
Comment