Subject Re: [IBO] Disablecontrols
Author nibler@t-online.de
Dion,

> How do I prevent a TIB_Grid from showing an insert ie displaying visually
> the new record, because disablecontrols is not the answer?

Qry.BeginBusy(False);
Qry.DisableControls;

...Inserts

Qry.EndBusy;
Qry.EnableControls;

Harald