I have some apps made in A97, now the time has come to convert them to AXP.
No real conversion problems, except... My screen doesnt update anymore, i have a counter running on the screen doing something like so:
In 97 this results in my form beeing updated every 5 records, but in AXP it stops updating if the application is not "on screen". But if i minimize the app that is "on screen" lets say word... Then it doesnt start updating either....
Has anyone ever seen anything like this?
Greets
The Mailman
No real conversion problems, except... My screen doesnt update anymore, i have a counter running on the screen doing something like so:
Code:
do while...
....
myCounter = myCounter + 1
me.txtDone = myCounter
if myCounter mod 5 = 0 then me.repaint
loop
In 97 this results in my form beeing updated every 5 records, but in AXP it stops updating if the application is not "on screen". But if i minimize the app that is "on screen" lets say word... Then it doesnt start updating either....
Has anyone ever seen anything like this?
Greets
The Mailman