Link to home
Start Free TrialLog in
Avatar of MPJD
MPJD

asked on

How to implement Drill Down Rows / Child Rows in DataGridView?

I am trying to add "Drill Down" functionality to a DataGridView on a WinForm. I know what a Parent - Child DataGridView is and its implementation. But in my situation, I want to display the Parent Child relationship usign one grid.

For example: A DataGridView contains information of Customers. One Customer may contain multiple orders. User should be able to click on the Customer Name cell, which will then expand showing all the Orders for the selected customer.

Can some one tell me how to implement this functionality using a .net 2.0 DataGridView for WinForms?
ASKER CERTIFIED SOLUTION
Avatar of Nash2334
Nash2334

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of MPJD
MPJD

ASKER

Excellent...even though it is difficult suits my requirements. Thanks.