Subject Re: [IBO] IB_Grid: Reduce flickering
Author Woody
From: "Daniel Albuschat" <d.albuschat@...>
>
> I'll have to bear with the flickering for now, I guess...

If using Dephi, you can try using the LockWindowUpdate function using the
form handle. Something like:

LockWindowUpdate(self.Handle);
try
... code to close/open query ...

finally
LockWindowUpdate(0);
end;


HTH

Woody (TMW)