On 3/22/10 10:13 AM, Ed Leafe wrote: > On Mar 22, 2010, at 12:44 PM, Scott Sheffield wrote: > >> dabo.ui.setAfter(self.pageFrame.Pages[0].Visible, False) >> >> I couldn't get that to work. >> >> I thought that maybe: >> dabo.ui.setAfter(self.pageFrame.Pages[0], Visible, False) >> would work, but I couldn't get that work either. > > > It should be: > > dabo.ui.setAfter(self.pageFrame.Pages[0], "Visible", False)
Sorry about the misinformation. >>> From the dShell I can issue: >> >> self.pageFrame.Pages[0].Visible = False >> >> and that blanks out that select page. >> >> But I still have the "tab" for it, and I still need to run the query without >> limits record limits. > > If you want to remove the page, calling: > > self.pageFrame.removePage(0) > > ...would be the best option. The datanav UI requires the select page to be defined. 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]
