Ed Leafe wrote:
> On Jun 12, 2007, at 10:47 AM, johnf wrote:
> 
>> Is there an easy way to populate a grid with "self.bizSecondary".   
>> Can I say
>> dGrid.DataSource=self.bizSecondary ?  Or do I have to create the  
>> DataSet from
>> the self.bizSecondary data.
> 
>       No, you should be able to simply set grid.DataSource =  
> self.bizSecondary, and it should fill the grid automatically from  
> bizSecondary.

Except, what you should do is mediate through the form instead. IOW:

form.addBizobj(bizSecondary)
grid.DataSource = bizSecondary.DataSource

-- 
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]

Reply via email to