Hi,
I'm working on an app with one form which I need to update every
minute or so in the background. This form contains a datagrid, and
users should be able to leave it open in the background while they
work on other things. So far I've created a background thread that
queries the database and returns updated data in a DataTable, but when
I try to update the datasource of the grid to the new table, the form
gets the focus.
Does anyone know of a way to update the data displayed in a datagrid
while the datagrid's form remains in the background?
Thanks.