像往常一样,这是我保存按钮中的代码:
Private Sub Tbl_Student_InformationBindingNavigatorSaveItem_Click ...
Me.Validate()
Me.Tbl_Student_InformationBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.EnrollmentDataSet)
End Sub
在保存之前,我需要修改要保存的记录中的一列。但是我怎样才能访问它?
我试图将名为“状态”的列的字段修改为“活动”。这是我之前决定附加的代码Me.Validate()
。
Me.Tbl_Student_InformationBindingSource.Item("Status") = "Active"
这是错误的,但我认为它必须看起来像这样。