Hi,
Is there anyway I can create grids at runtime?
I might have a need to create 1 or more grid at run time.
Is that possible?
Thanks,
K
Was a sizing issue..
Works fine now.
thanks,
k
Had done that n set visible but somehow was not able to see the grids.
Am I missing something here?
All that you would need to do is create the grid and add it to your form's (or various container's) Controls collection, i.e.:
UltraGrid grid = new UltraGrid();
grid.DataSource = myDataSource;
grid.Dock = DockStyle.Fill;
this.Controls.Add(grid);
-Matt