Hi,
I need to merge cells in a flexgrid HORIZONTALLY. The first cell has some text. The other 2 cells do not have any text. Is it possible ?
Thanks,
Prashanth
Printable View
Hi,
I need to merge cells in a flexgrid HORIZONTALLY. The first cell has some text. The other 2 cells do not have any text. Is it possible ?
Thanks,
Prashanth
Try something like this:
Do Until COL = Me.gridTest.Cols - 1
gridTest.MergeCol(col) = True
col = col + 1
Loop