I'm looking for a fixed table, like HTML table to fill data in each row. I took a look at TableLayoutPanel, but this is not what I'm looking for because you can't fill the cells programmatically. Anyone have an idea how to handle this?
Asked
Active
Viewed 872 times
-3
-
what about gridview or listview? – AnarchistGeek Mar 21 '12 at 10:47
1 Answers
0
You can fill the cells from code. See this example:
TableLayoutPanel panel = new TableLayoutPanel();
panel.Controls.Add(new TextBox(), 1, 1);

Adriano Repetti
- 65,416
- 20
- 137
- 208