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:
  1. Dim dr As DataRow
  2.  
  3.         dr = DS1.Tables(0).NewRow()
  4.         dr("Output") = R011
  5.  
  6.         DS1.Tables(0).Rows.Add(dr)
  7.         da.Update(DS1)
  8.         DS1.AcceptChanges()



Would it be better to create a new row or to access an existing row?

Thanks

Art W.