Mike Mabey wrote: > Hi all, > > I've been off the list for a couple weeks, so I don't know if this has been > a recent topic of conversation, but my client recently started having > trouble with the app I made for them, and I can't find a solution. In this > app, I have three dropdown lists, two of which simply filter the results of > the third. The third dropdown box contains the names of individuals whose > information is stored in the database. There is also a "Go To" button which > does this: > > def onHit(self, evt): > frm = self.Form > frm.PrimaryBizobj.moveToPK(frm.NameDropDown.Value) > frm.requery() > > I've been able to verify that when a name is selected, the "Go To" button is > clicked, and the name dropdown is opened again, the program totally freezes > and my CPU usage shoots up to 100%. What could possibly be causing it to do > this? > > BTW, I'm running under revision 4838 in Win XP Pro.
Try making that: dabo.ui.callAfterInterval(100, frm.requery) 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]
