Hi All:
Been a long time since last posting.
Have an ACCESS 2003 database of about 3500 records. Using VB2005, Im converting from ACCESS programing to
VB. Have been successful in setting up a data screen with a a Binding Navigator to control movement throug the data retrieived with a SELECT Query. Only problem is when I try to modify data rows and save the modified data to the database using the SAVE button on the binding navigator. Code is as follows:
Try
Me.Validate()
Me.CONTLOGBindingSource.EndEdit()
Me.CONTLOGTableAdapter.Update(Me.KtplogDataSet.CONTLOG)
MsgBox("Update Successful")
Catch ex As Exception
MsgBox("Update Failed")
EndTry
After editing the data fileds and presing the SAVE button, I get the "Update Successful" message, the modified data does not show up in the database file. I checked the copy of the database file in debug folder of the application and find the changes are included in that copy. Yet, the changes are not in the main database file in the application.
Any suggestions on how to correct the situation?
Thanks in advance.
Greenbriar