[dabo-users] small bugs

2009-07-30 Thread Miguel Lopes
Here's a couple: dStatusBar.ForeColor property is not accepting assignments. dForm.first() , .prior(), .next(), .last() methods are not updating the status bar text properly Both .prior() and .next() update when they hit BOF and EOF, all other alternatives don't update. Miguel

[dabo-users] how can I refresh a dropdown

2009-07-30 Thread John
Hi, I have a need to dynamicly refresh a dropdown. I have tried using bindEvent for GotFocus, Hit, MouseLeftClick. Using the following code below to refresh the choices and keys. Where courseID = the RegID of the dropdown def courseChoices(self): self.escourse.requery() courseD

Re: [dabo-users] how can I refresh a dropdown

2009-07-30 Thread John
On Thursday 30 July 2009 10:10:13 am John wrote: > Hi, > > I have a need to dynamicly refresh a dropdown. I have tried using > bindEvent for GotFocus, Hit, MouseLeftClick. Using the following code below > to refresh the choices and keys. > > Where courseID = the RegID of the dropdown > def courseC

Re: [dabo-users] how can I refresh a dropdown

2009-07-30 Thread John
On Thursday 30 July 2009 11:21:30 am John wrote: > On Thursday 30 July 2009 10:10:13 am John wrote: > > Hi, > > > > I have a need to dynamicly refresh a dropdown. I have tried using > > bindEvent for GotFocus, Hit, MouseLeftClick. Using the following code > > below to refresh the choices and keys.

[dabo-users] SQLite and a grid

2009-07-30 Thread Ivan Miller
I am creating my first dabo app. I am using SQLite for the database and created a form by following the "The Step-By-Step Guide to Dabo Programming " It works great for the data entry part and I can move through the records with the next and prev bu

Re: [dabo-users] SQLite and a grid

2009-07-30 Thread John
On Thursday 30 July 2009 12:41:48 pm Ivan Miller wrote: > I am creating my first dabo app. I am using SQLite for the database and > created a form by following the "The Step-By-Step Guide to Dabo Programming > " > > It works great for the data entry