Ed Leafe wrote:
> On Jun 12, 2007, at 12:30 PM, Paul McNett wrote:
> 
>> This isn't mediated through the form, even though 'self' is the form.
> 
>       OK, then, explain the difference between a direct reference to the  
> bizobj, and constantly asking the form for the reference. How is that  
> "mediating"?

It is clear that I misunderstood this entire thread. However, to answer 
your question, take these two options:

1) grid.DataSource = biz  ## direct biz ref.

--or--

2) grid.DataSource = biz.DataSource  ## indirect biz ref.


In #1, the grid will call biz.requery(), biz.moveToRowNum(), etc. In #2 
the grid will call form.requery(self.DataSource), 
form.moveToRowNum(self.DataSource), etc.


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