Is this what you are talking about?
daInsert.Fill(ds)
Dim t As DataTable
t = ds.Tables("tmpdailycrewtest")
Dim myrow As DataRow
myrow = t.NewRow()
myrow("Name") = lblName(intC).Text
myrow("EmpNo") = lblNumber(intC).Text
myrow("AccountNo") = lblAccountNew(intC, intN).Text
myrow("JobNo") = lblJobNew(intC, intN).Text
myrow("TruckNo") = strTruckNO.PadLeft(3, "0") 'cboTruck(intC, intN).Text
myrow("TruckHrs") = txtTruckHours(intC, intN).Text 'this is for vehicle hours
myrow("TrailerNo") = strTrailerNO 'cboTrailer(intC, intN).Text
myrow("TrailerHrs") = txtTrailerHours(intC, intN).Text 'this is for vehicle hours
myrow("TrenchNo") = strTrenchNO 'cboTrench(intC, intN).Text
myrow("TrenchHrs") = txtTrenchHours(intC, intN).Text 'this is for vehicle hours
myrow("EarnType") = lblEarnTypeNew(intC, intN).Text
myrow("Hours") = txtHoursNew(intC, intN).Text
myrow("Notes") = txtNotes.Text
myrow("TimeCardDate") = lblDate.Text
myrow("Foreman") = lblForeman.Text
myrow("Passenger") = strPassenger
t.Rows.Add(myrow)
Dim pdsIR As DataSet
pdsIR = ds.GetChanges(DataRowState.Added)
If Not pdsIR Is Nothing Then
Me.daInsert.Update(pdsIR)
End If
ds.AcceptChanges()