Hi!
I have a Master/DetailGrid wich populates fine with a dataset,
but when i should hide columns in the detail grids they will not hide.
Anybody having a clue about this?
———————————–
// Hide MasterGrid Columns.
// Hiding this column works fine!
this.MasterGrid.Columns[“Col1”].Visible = false;
// Hide DetailGrid1 Columns.
// This column will not hide!
this.DetailGrid1.Columns[“Col1”].Visible = false;
// Hide DetailGrid2 Columns.
// These columns will not hide!
this.DetailGrid2.Columns[“Col1”].Visible = false;
this.DetailGrid2.Columns[“Col2”].Visible = false;
———————————
Regards,
Benny
Imported from legacy forums. Posted by Benny (had 3259 views)