Author: stalzon | Posted on: 7/10/2008 8:53:53 AM | Views : 977

Hi,

I'm trying to put a table on a page with unknown number of rows. I've put the table on the page from the toolbox menu.

 For i=0 to rowcount-1
Table1.Rows.Add(new TableRow)
Table1.Rows(i).Cells.Add(new TableCell)
Table1.Rows(i).Cells.Add(new TableCell)
Next 
 I can change the width of the columns with
Table1.Rows(i).Cells(0).Width = 20
 

But I can't change the height of the rows. I've tried a couple of things but nothing seems to work. How can I change the row heights with a VB command?
...

Go to the complete details ...