I'm developing a VB.net program using VS2008 that acts as a data collection system.
The main screen displays a couple of datagrids that are displaying information from a MS Access database. Currently I'm using the following code to update the datagrid display on a 1 second timer:
I'm seeing that the HDD light is flashing constantly when the application is running and this worries me a bit. Is there a way to check if a database has changed and then do a refresh of the datagrid(s) that are populated by that database?
The main screen displays a couple of datagrids that are displaying information from a MS Access database. Currently I'm using the following code to update the datagrid display on a 1 second timer:
VB.NET:
Me.IADC_FaultStorageTableAdapter.Fill(Me.FaultDBDataSet.IADC_FaultStorage)
Me.FaultDataGridview.Refresh()
I'm seeing that the HDD light is flashing constantly when the application is running and this worries me a bit. Is there a way to check if a database has changed and then do a refresh of the datagrid(s) that are populated by that database?