Mater Details records in DataGridView

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to show mater detail in DataGridView. If you bind DataSet with
relationship defined to DataGrid it show records in drill down manner (+ to
expand details) but DataGridView does not.

Thanks
 
The DataGridView does not display heirarchical records. To do that,
people usually use two grids -- the parents in one, the children in
another --
and bind them together, so when you change position in the parents, it
shows the appropriate children.

Robin S.
 
Back
Top