Subject | Re: [IBO] Freezing screen with BeginBusy |
---|---|
Author | Lucas Franzen |
Post date | 2001-01-15T13:00:46Z |
Riho-Rene Ellermaa schrieb:
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.
>BeginBusy is for stopping the flickering of the SQL-Cursor, not for
> 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?
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.