private void ListAdd(SALicense lic) { Table table = this.tableModules; // The Table control on a form - already initialised lic.Load(); Row row = new Row( new Cell[] { new Cell(lic.Product), new Cell(lic.Version), new Cell(lic.Username), new Cell(lic.Message) } ); row.Tag = lic; table.TableModel.Rows.Add(row); }