Have datagrid update after 60 seconds

OMRebel

Active member
Joined
Sep 27, 2006
Messages
44
Programming Experience
Beginner
Hey everyone. I have a form that has a datagrid on it. I want it to, however, refresh the data in the datagrid after 60 seconds. I'm not sure how to do that though. I'm setting up the data in the grid like this:

VB.NET:
        If ds.Tables("Problem").Rows.Count > 0 Then
            With dgvOpen
                .DataSource = ds.Tables("Problem")
            End With
        End If

But, if I want to refresh that every 60 seconds, I'm at a loss. Any suggestions?
 
Back
Top