I\'m currently trying to fill a TableLayoutPanel
through a method which goes as follows:
private int _rowCount;
public void InitPaths()
{
in
You are ittering through GetRowHeights()
, returning the height of each row. But you are deleting from the RowStyles
collection which is not directly related to the first collection. I assume that GetRowHeights()
returns much more rows, than RowStyles
has.
Why not:
BibTable.RowCount = 0;
BibTable.RowStyles.Clear();
You are ittering through GetRowHeights()
, returning the height of each row. But you are deleting from the RowStyles
collection which is not directly related to the first collection. I assume that GetRowHeights()
returns much more rows, than RowStyles
has.
Why not:
BibTable.RowCount = 0;
BibTable.RowStyles.Clear();