I use Query in my report where I have special SELECT statements.
So I have first window in my report where I ask user to set parameters, then when user clicks on OK I open my Query with parameters and try to preview report. But it takes a while, so I need SQLWait cursor in this time.
L.
Comments
So I have first window in my report where I ask user to set parameters, then when user clicks on OK I open my Query with parameters and try to preview report. But it takes a while, so I need SQLWait cursor in this time.
L.
screen.cursor:=-17;
query.close;
query.sql.clear;
query.sql.add('...');
query.open;
screen.cursor:=0;
than user knew that program works (when select statement need for example 8 seconds).
In FR3 this doesn't work.