Group: Forum Members
Posts: 524,
Visits: 30K
|
I'll let Dustin answer for Microfour, but this may help :
The SF Listview is a very sophisticated improvement on the .NET standard listbox and is recommended for displaying data and providing lists of child records which will be used to select a single child which can come up in a single record form for data entry or editing. There is also a new control - the Stratalistview - that has been completely designed by Microfour. A few of the datasource things are not hooked up yet (though they can be done manually) but it will be another welcome addition to the framework and should be complete in an upcoming version.
The .NET grid and datagridview ares not very well suited for data entry ( the 3rd party controls like Infragistic however are really quite good )
Fortunately, using a grid, a datagridview or a 3rd party grid in SF is very easy. Drop a BusinessBindingSource on the form and set its datasource to the businessobject. The drop on the grid and set its datasource to the BusinessBindingsource.
Works very well and you have all the advantages of a SF BO.
It is worth learning all the things the listview will do first, and then deciding where there are cases you want to do data entry in a grid. I would recommend avoiding datagridviews and grids for data entry unless you have a good third party control like those from Infragistics, DevExpress, Telerik etc.
Hope that helps.
|