My tables in MS Access doesn't have any change which it did not update the record that I entered in Visual Studio.. This is my code.
Private Sub btnSubmit_Click(sender As Object, e As EventArgs) Handles btnSubmit.Click
On Error GoTo saveErr
RequestSoftwareBindingSource.EndEdit()
RequestSoftwareTableAdapter.Update(FYPDataSet.RequestSoftware)
MessageBox.Show("Your request has been submitted.", "Thank you", MessageBoxButtons.OK, MessageBoxIcon.Information)
saveErr:
txtName.Text = ""
txtDate.Text = ""
txtSubject.Text = ""
txtSoftware.Text = ""
txtLabNum.Text = ""
End Sub
I'm glad if there's anyone can helpp me with this problem.. Thanks. :)