1
我正在使用一個數據輸入窗體,它只有一個DataGridView。該DGV屬性包括:Visual Studio 2015中的DataGridView
- 名稱:StaffInfoDGV
- 數據源:StaffInfoBindingSource
的StaffInfoBindingSource
的特性是:
- 數據源:StaffInfoDataSet
- 數據成員:tblStaffInfo
我可以讀取沒有問題的數據。但是,當我在網格的任何一列中修改一個值,並通過單擊保存按鈕StaffInfoBindingNavigator
保存時,它不會被保存,並且下次打開表單時只會再次顯示原始數據。
下面的代碼將出現在表格的代碼視圖:
Public Class frmStaffEntry
Private Sub StaffInfoBindingNavigatorSaveItem_Click(sender As Object, e As EventArgs) Handles StaffInfoBindingNavigatorSaveItem.Click
Me.Validate()
Me.StaffInfoBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.StaffEvaluationDataSet)
Me.StaffInfoBindingSource.EndEdit()
Me.StaffInfoTableAdapter.Update(Me.StaffEvaluationDataSet.tblStaffInfo)
End Sub
我需要幫助非常拼命。請建議。