DatgridView like in SQL 2005 Management Studio

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In SQL 2005 management studio, when you open a large table the grid displays
the rows in the grid asynchronously, you can manipulate the result grid while
all the records are being loaded...Anyone know how to achieve this in VB.NET
or C# ?
 
I guess you could use a worker thread to fill in results.
You would have to be careful to manipulate the source dataset only in UI
thread though.
 
Back
Top