How to refresh datagridview with button?

1k Views Asked by At

I am very new to VB and I have been tasked with writing a program for my work. I have an MS access DB and in the program I have a gridView.

I created a refresh button but I can't seem to get it to update anything. The database is on a network drive. When I restart the program it gets the data but will not refresh.

Any ideas how to make this work?

2

There are 2 best solutions below

7
On

Protected Sub btnRefresh_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnRefresh.Click

BindGrid()

End Sub

2
On

When click on the "Refresh Button" that you have created. Call the bindgrid() function. It should go database get the data and bind to the datagrid again.