Posted by: Michael Stoll \(MICSTO\)
Hi Joachim,
you could use the cell merge feature in M!Table.
For example, if you have a table with 3 columns and you want to "simulate" a
row with 3 lines, you could do something like this:
Code: Select all
Set nRow = SalTblInsertRow( hWndTbl, TBL_MaxRow )
Set nRow2 = SalTblInsertRow( hWndTbl, TBL_MaxRow )
Set nRow3 = SalTblInsertRow( hWndTbl, TBL_MaxRow )
Call MTblSetCellMergeEx( hWndCol1, nRow, 0, 2, 0 )
Call MTblSetCellMergeEx( hWndCol2, nRow, 0, 2, 0 )
Call MTblSetCellMergeEx( hWndCol3, nRow, 0, 2, 0 )
Ok, it behaves not really like a single row, but maybe this is a usable
workaround for you.
Michael