I've set up a grid and tied it to a datasource. I'm also using the CellDataRequested provide the grid with the data.
My question is simple.
I want my grid to work like Task Manager does.
thanks,
Gene
Hi Gene,
You can call grid.Rows.Refresh(). These method takes an enum and I'm not exactly sure which one you need, but there are only three choices, so you can experiment and see which one works best.
Thanks Mike, that did the trick!
Now I'm trying to optimize my updating. I'm assuming that I use rows[index].refresh to update a single row from the dataset....right?
Hm, I'm not sure if you can update a single row. Refresh might do it, but I think that's just a visual refresh, it might not force the reloading of the data. I can't say for sure, though - it's worth a try. :)