我有一个在 access 数据库中插入数据的程序,用户可以在数据网格视图中查看新添加的项目。在我将新项目添加到数据库后,程序运行时在 datagridview 中看不到它。我必须停止程序并再次运行它才能看到我所做的更改。
这是我加载datagridview的方式:
Public Class frmSupplies
Private Sub frmSupplies_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'TODO: This line of code loads data into the 'SuppliesDataSet.product_info' table. You can move, or remove it, as needed.
Me.Product_infoTableAdapter.Fill(Me.SuppliesDataSet.product_info)
End Sub
如何在程序仍在运行时查看新添加的项目?