Hello Everyone:
I am trying to send information to an mdb. I have already retrieved data from the database. I have preformed changes to the data, they are all still integers and there is the same number of results as there are samples. How do I get the new results back into a MS Access database?
Output Code:
Dim dr As DataRow dr = DS1.Tables(0).NewRow() dr("Output") = R011 DS1.Tables(0).Rows.Add(dr) da.Update(DS1) DS1.AcceptChanges()
Would it be better to create a new row or to access an existing row?
Thanks
Art W.
