Thread SQL Icon
Thread SQL Icon
Is there a way to suppress the SQL working icon when you have a query running in a background thread? My query polls every 30 sec and it will put the working sql icon on the screen every time it executes.
Hello,
You don't need to edit the source code. It's enough, for example, to set ChangeCursor := False in the initialization section before query opening or globally.
You don't need to edit the source code. It's enough, for example, to set ChangeCursor := False in the initialization section before query opening or globally.
Code: Select all
uses .., DBAccess;
//before query opening
ChangeCursor := False;
Query.open;