R
Roger H
Right now I do the following:
int count = (SELECT COUNT(*) FROM ...)
and then
++c every time I read a new record.
I then display "Reading record 'c' of 'count'" -- It works OK
Is there a better way to do this? How about using the progress bar?
When I did that last though, I had an error reinitializing it to be
able to use a new query...
Will the progress bar provide any better resiliency in the form
refresh? When I do this, if I change focus away from the application I
have a lovely white screen and no further updates.
int count = (SELECT COUNT(*) FROM ...)
and then
++c every time I read a new record.
I then display "Reading record 'c' of 'count'" -- It works OK
Is there a better way to do this? How about using the progress bar?
When I did that last though, I had an error reinitializing it to be
able to use a new query...
Will the progress bar provide any better resiliency in the form
refresh? When I do this, if I change focus away from the application I
have a lovely white screen and no further updates.