XP - VB 2005 - Sql Express 2005
I added data to a defined but empty dataset - reflected in a
datagridview.
I then followed the instructions in
to write the code below:
-------------------------------------------------------------------
Me.CBOEdbDataSe t.StocksMain.Ac ceptChanges()
Try
Validate()
' Me.StocksMainBi ndingSource.End Edit()
Me.StocksMainTa bleAdapter.Upda te(Me.CBOEdbDat aSet.StocksMain )
MsgBox("Update Worked")
Catch ex As Exception
MsgBox("Update Failed")
End Try
------------------------------
I get the "Update Worked" message but it DID NOT work.
What else do I need? How do diagnose and fix this?
Thanks.
I added data to a defined but empty dataset - reflected in a
datagridview.
I then followed the instructions in
to write the code below:
-------------------------------------------------------------------
Me.CBOEdbDataSe t.StocksMain.Ac ceptChanges()
Try
Validate()
' Me.StocksMainBi ndingSource.End Edit()
Me.StocksMainTa bleAdapter.Upda te(Me.CBOEdbDat aSet.StocksMain )
MsgBox("Update Worked")
Catch ex As Exception
MsgBox("Update Failed")
End Try
------------------------------
I get the "Update Worked" message but it DID NOT work.
What else do I need? How do diagnose and fix this?
Thanks.
Comment