or

this.CollectionGrid.TableElement.RowHeight = 30;
this.CollectionGrid.TableElement.GroupHeaderHeight = 30;
this.CollectionGrid.TableElement.FilterRowHeight = 30;
this.CollectionGrid.TableElement.TableHeaderHeight = 30;
Form frm = new Form(); RadGroupBox groupb = new RadGroupBox(); frm.Controls.Add(groupb);
dtDataTable.Columns.Add(
foreach (Objeto oObjeto in ArrayObjetos)
{
DataRow drRow = dtDataTable.NewRow();
drRow [
"Ide"] = oObjeto .Ide;
drRow [
"Nom"] = oObjeto.Name + " " + oObjeto.LastName;
}
dtDataTable.Clear();
dtDataTable=
null;if(dtDataTable1 != null)
dtDataTable1.Clear();
dtDataTable1=
null;if(dtDataTable2 != null)
dtDataTable2.Clear();
dtDataTable2=
null;
The question is, We are releasing resources correctly or the problem may be the way I'm filling?
Thank you very much.