digitaldrew
Well-known member
- Joined
- Nov 10, 2012
- Messages
- 167
- Programming Experience
- Beginner
Could really use some help on this one..For some reason I cannot seam to update a database. I have an update query built in the tableadapter but the database never gets updated and no exceptions are ever thrown..
Using VB.NET 2010 Express Edition..
Using VB.NET 2010 Express Edition..
VB.NET:
Me.TestDataSet.Clear()
Try
Me.Validate()
Me.DomainNamesBindingSource.EndEdit()
Me.DomainNamesTableAdapter.Update(Me.TestDataSet.DomainNames)
MsgBox("Update Successful")
Catch ex As Exception
MsgBox("DataBase Update Error")
End Try