Subject | Re: [IBO] PreventScrolling |
---|---|
Author | guido.klapperich@t-online.de |
Post date | 2001-04-28T12:30:19Z |
> 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.