how do i Auto refresh a datagridview

i have a small app that tells uses how many customers are waiting for them and what time they arrived but i cant think how i could get the view to refresh itself after say 15 seconds,

cheers steve j




Answer this question

how do i Auto refresh a datagridview

  • Jensch

    Add a Timer control to your Form. In the Form Load event handler set the Interval property of the Timer to 15000 ms and do Timer.Start(). In Timer Tick event handler just refill your TableAdapter. The DataGridView will refresh automatically.



  • how do i Auto refresh a datagridview