views:

37

answers:

4

I need to create datagrid at runtime in and add it to one new tab.

C# 3.0 -- .net 3.5

Any starting point?

+1  A: 

The best way to learn how to do this is to add data grid on design time and take a look on the auto generated code.

Itay
A: 

You can do this much the same as creating any control at runtime.

DataGridView dg = new DataGridView();
dg.ID = "grid";
....Other properties

this.tab.Controls.Add(dg);

Just remember when dynamically creating controls they must be re-created on each postback

Richard Friend
+1  A: 

It's really easy...

DataGridView dg = new DataGridView();

// set columns (auto or manual)

// set appearance (lots of style options)

// set data source (IEnumerable object)
dg.DataBind();

placeHolder1.COntrols.Add(dg); // add to placeholder
ck
Did the job, thanks
Mark
A: 

When i have to do something like that i use Itay's method too, create all i need at design time, copy & paste and voilá.

sh4