I have a DGV with wizard created connection, ds, and da. I have another DGV that is filled and managed with code. I make changes to the first and it updates. I make changes to both and only the second one will update. in a btn click event :[If dsGM.HasChanges Then
daGM.Update(dsGM.tblGM)
End If
If ds.HasChanges Then
cmdBldr.GetUpdateCommand()
dA.Update(ds, tbl)
End If]
daGM.Update(dsGM.tblGM)
End If
If ds.HasChanges Then
cmdBldr.GetUpdateCommand()
dA.Update(ds, tbl)
End If]