multiple datagrids

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

Guest

In SQL Server Query Analyzer, if I type in, say, 2 select queries,
it returns 2 datagrids of results, with a scrollbar on the right to scroll
between the 2 (or more) datagrids. I wanted to implement this in a vb.net
application I am writing. Does anyone know how this is done? Any example
code would be nice.
 
If you want to do that in windows forms application; just create the
grids dynamically and add them into a scrollable panel container
control as child controls. In ASP.Net you should either use a special
grid component or use iframes..

Good Luck..
 
Back
Top