HI
How can I to change the height , some or all rows of the FlexGrid ?
tks
Printable View
HI
How can I to change the height , some or all rows of the FlexGrid ?
tks
VB Code:
Grid.RowHeight(0) = 5000 Grid1.RowHeight(0) = 5000
VB Code:
'to change all the rows Grid.RowHeight(-1) = 100 'or whatever your value 'to change a single row Grid.RowHeight(1) = 500 '(1) is the row number 'to change some of the rows For i = 1 to 10 'For ten rows Grid.RowHeight(i) = 500 Next