Hi,
Here it is:
gridTest.MergeCells = flexMergeFree
Do Until row >= Me.gridTest.Rows - 1
gridTest.MergeRow(row) = True
Do Until col >= Me.gridTest.Cols - 1
gridTest.MergeCol(col) = True
col = col + 1
Loop
row = row + 1
Loop
is it possible to simulatinously merge rows and columns with the same content in MSFlexGrid.
Look on the last row of the image (Dima column). Simultanious merge occurs in this column, but as you see it does not merge properly.
I know that you can merge only rows or only columns.
Can you please help.




Reply With Quote