Subject Re: [IBO] PreventScrolling
Author guido.klapperich@t-online.de
> You may be able to use the OnGetCanScroll handler of the dataset.
>

How can I use this event, I tried the following, but it doesn't work:
procedure TContactsDataModule.CTCSQueryGetCanScroll(Sender: TIB_Dataset;
var CanScroll: Boolean);
begin
inherited;
CanScroll:=Sender.CanScroll;
end;



Guido.