Where are your update commands? If you did not specify any, then you need to set a commandbuilder to autogenerate the insert/update/delete commands when you call Update on your dataadapter... you can do it with a simple line of code...
Of course, if you arent using an oledb dataadapter, be sure to change it to the type of adapter you are using...VB Code:
'put this line of code (modifying it for your object names) after you create your adapter Dim MyCmdBuilder As New System.Data.OleDb.OleDbCommandBuilder(MyAdapter)




Reply With Quote