Hi
I want to bind a DataTable to GridControl ,but get an exception, The code as below(C#):
this.gridControl1.RowCount = table.Rows.Count;
this.gridControl1.ColCount =
table.Columns.Count;
this.gridControl1.PopulateValues(GridRangeInfo.Cells(1, 1, gridControl1.RowCount,
gridControl1.ColCount), table);
When run to the first code, I will get an exception that is Entry point was not found,table is a DataTable which is not null.
Could you help me solve this issue? Thank you