DataGridView Design alternatives
am 03.11.2007 01:10:59 von Jay ParzychI have many tables that are 'lookup' tables and want to provide a way
for users to Add/Update rows to them.
I will present the data in a datagridview, using a collection of objects
connected to a binding source. The logic for validating and saving is
contained within the object.
I am struggling with trying to decide which way to allow users to
Add/Edit data:
1) directly in the datagridview.
2) in a panel on the same form as the DGV. DGV will be read only. as a
row is entered, the data will be displayed in textboxes, comboboxs, etc
in a panel below the datagridview
3) in a separate form. As a row is selected for editing, it will be
passed to a separate modal form.
thoughts on any of these?
thanx