object array declaration, how ?

  • Thread starter Thread starter andrewcw
  • Start date Start date
A

andrewcw

This seem close enough ..
DataGridColoredTextBoxColumn aColumnTextColumn ; // note
this has a paint override
for(int i = 0; i < numCols; ++i)
{
aColumnTextColumn = new DataGridColoredTextBoxColumn();
aColumnTextColumn.HeaderText = qcLoaderTable.Columns
.ColumnName;
aColumnTextColumn.Width=custColWidths;
aColumnTextColumn.MappingName = qcLoaderTable.Columns
.ColumnName;
ts1.GridColumnStyles.Add(aColumnTextColumn);

}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top