On Saturday 15 December 2007 03:50:12 pm Adrian Klaver wrote: > I have two questions. > > 1) I created a form using the ClassDesigner. One form element is a grid > sizer. I can navigate through the fields in the grid sizer by tabbing when > the form is empty. When I populate the form by running it, I lose that > ability. Any idea why that is? > > 2) For this same form, when I run it the parent bizobject selects 1000 > records. Where is this limit set and how do I change it? Also how can I > select records beyond the initial limit? > > Thanks,
I'm not sure I understand the first question. I'm confused when you say you can tab but not when the grid sizer is populated. However, you should have created a panel and add the Grid Sizer to the panel to allow tabbing. The second question is a lot easier. The BizObject has several properties that the developer can to change the SQL. setWhereClause setOrderByClause ... setLimitClause The available properties are in dBizobj.py. I the limit 1000 is the default if the developer does nothing to set the limit. -- John Fabiani _______________________________________________ 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]
