johnf wrote: > Next you have to populate the grid dataset; > > GridName.DataSet = myBizobj.getDataSet() > then you might want to refresh the grid > GridName.refresh()
Depending on what you want to do with the grid, it's usually better to bind it directly to the bizobj using grid.DataSource = mybizobj.DataSource. That way when the bizobj requeries, the grid will notice automatically, among other reasons. So... please recommend that people use DataSource instead of DataSet for grids. DataSet is really intended to allow displaying data without a bizobj present. -- pkm ~ http://paulmcnett.com _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/dabo-users/[EMAIL PROTECTED]
