Subject Getting rid of flickering cursor
Author sboydlns
I am using IBO version 4.9.14 with Delphi XE2. I am trying to get rid of the annoying cursor flicker that occurs when fetching records from a TIBOQuery.

I called BeginBusy(True) (also tried BeginBusy(False)) but the cursor still flickers. How do I get rid of the flicker. It slows down the application horribly when running it under Terminal Services.

Here is how I am issuing the BeginBusy call:

qry.IB_Transaction.StartTransaction;
qry.IB_Transaction.BeginBusy(True);
try
...
finally
qry.IB_Transaction.EndBusy;
qry.IB_Transaction.Commit;