I can dynamically create ordinary tables with
Dim tRow As New TableRow() tblKategorie.Rows.Add(tRow)
and Dim tCell As New TableCell() tRow.Cells.Add(tCell)
But now I need a complex table like this:
How to create such this table dynamically? How can I merge cells and columns to get this result? I would be very grateful for examples or links that will help me understand this