在更新Access数据库后更新DGV

在更新Access数据库后更新DGV

本文介绍了在更新Access数据库后更新DGV的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个Access数据库,该数据库每40秒更新一次,我想将所有更新的数据传输到DGV.但是我在更新DGV时遇到问题.第一次没有问题,但是40秒后,DGV将不会更新.如果有人可以帮助我,将不胜感激.

I have an Access Database that is updated every 40 seconds and I want to transfer all updated data to DGV. But I have a problem updating the DGV. The first time there is no problem, but after 40 seconds, the DGV will not update. It will be appreciated if anyone can help me.

推荐答案

Private Sub refreshTimer_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer1.Tick

        Me.Tabel1TableAdapter.Update(Me.Db1DataSet.Tabel1)
        Me.Tabel1TableAdapter.Fill(Me.Db1DataSet.Tabel1)
        Me.DataGridView1.DataSource = Me.Db1DataSet.Tabel1
        Me.DataGridView1.Refresh()

End Sub


这篇关于在更新Access数据库后更新DGV的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 06:01