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
Grid.RowHeight(0) = 5000 Grid1.RowHeight(0) = 5000
My Blog : My Article of the day
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
'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
If an answer to your question has been helpful, then please, Rate it! Have done Projects in Access and Member management systems using BioMetric devices, Smart cards and BarCodes. Useful Codes Capture Special Keys' Status - Create DSN thru VBCode - Add Serial Number / Row Number to SQL Queries
Forum Rules