Looking for an Event of Busy Query Processing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi:
I need to notify my user with word "Working" when waiting for long queries.
Changing screeng Pointer from 11 to 1 does not work for long queries Why?
What is the Event of Busy Engine (Query processor) that I can use to inform
the User?
Thanks in advance, Ilya.
 
Ilya said:
Hi:
I need to notify my user with word "Working" when waiting for long queries.
Changing screeng Pointer from 11 to 1 does not work for long queries Why?
What is the Event of Busy Engine (Query processor) that I can use to inform
the User?
Thanks in advance, Ilya.

There is no such event.

To get an hourglass, change Screen.Mousepointer to 11 before the statement
that runs the query, and change it to zero after the statement that runs the
query. Also, change it to zero in an error handler for the procedure,
otherwise if there is an error you will get stuck with the hourglass.
 
Back
Top