Frequently Asked Component Specific Questions

Options

Display all FAQ items

Search FAQ items:


Displaying items 1 to 1 of 1, page 1 of 1

<< previous next >>

TAdvStringGrid
How to disable scrolling with mousewheel and arrow keys

Disable the mousewheel with:
  BinningGrid.EnableWheel := false;
Disable scrolling with arrow keys with:
procedure TForm1.BinningGridTopLeftChanged(Sender: TObject); 
begin
  BinningGrid.TopRow := 0;
end;