views:

26

answers:

1

How would you go about designing a windows form that allows adding/editing a master entity along with it's child entities? For example When adding/editing an Order, Order-Items would also need to be added/edited on the same Windows form.

A: 

Either with a datagrid, embedded repeater usercontrol, or with a dialog.

You could have a list control, that when selected, displays the view/edit control in a different frame. alt text

Neil Barnwell