On Jun 10, 2009, at 5:26 PM, johnf wrote: > if ako: > for my in self.Form.bizobjs: > theBizobj = self.Form.getBizobj(my) > del theBizobj
To iterate over the bizobjs on a form, it would be cleaner to do: for biz in self.bizobjs.values(): Also, the 'del' statement only deletes the reference name 'theBizobj'; it doesn't delete the actual bizobj. -- Ed Leafe _______________________________________________ Post Messages to: Dabo-users@leafe.com 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/9c19c2c4-39b8-4198-b6f0-7b8d3c072...@leafe.com