Subject Re: [IBO] Freezing screen with BeginBusy
Author Lucas Franzen
Riho-Rene Ellermaa schrieb:
>
> Hi!
> I'm using bookmarks to do some processing with selected records. During this
> opration I would like to stop screen updates. I hoped that BeginBusy() would
> help, but there was no difference when using it - the cursor in grid jumped
> from one record to another.
> Am I doing something wrong here? What should I use?

BeginBusy is for stopping the flickering of the SQL-Cursor, not for
disabling the visualization of your data.

If you don't want to jump the cursor in the grid up and down, use
somethinglike:

try
ibc.BeginBusy ( FALSE );
myQry.DisableControls;

// do your data processing here

finally
myQry.EnableControls;
inc.EndBusy;
end;


Regards
Luc.