As usual here is the code in my save button:
Private Sub Tbl_Student_InformationBindingNavigatorSaveItem_Click ...
Me.Validate()
Me.Tbl_Student_InformationBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.EnrollmentDataSet)
End Sub
Before saving, I need to modify one of the columns in the record to be saved. But how can I access it?
I tried to modify the field of the column named "Status" into "Active". Here is the code I decided to append just before Me.Validate().
Me.Tbl_Student_InformationBindingSource.Item("Status") = "Active"
This is wrong but it must be look like this, I think.