On 7/20/10 9:03 AM, Jeff Johnson wrote: > I am trying to bypass the Select Page of an AppWizard form. I have > tried a couple of things: > > def afterSetupPageFrame(self): > self.requery() > self.pageFrame.removePage(0) > > This removes the select page and populates the grid on the browse page, > which is what I want. Double clicking on a browse page record or > selecting the edit tab displays the edit page with no data. There is no > data to do a quick report on either. > > What do I need to do to populate the edit page and the quickreport?
Put your code in the form's afterInit() instead, after the self.super() call. Paul _______________________________________________ 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/[email protected]
