Hello,
I dropped TsWorksheetGrid component on design form, modified and saved AutoAdvance property. But AutoAdvance value didn't changed.
I think there is a bug in fpspreadsheetgrid.pas. After I modified two lines of code, then It works.
first , instead of
overriding property
property AutoAdvance default aaDown;
and it needs to be deleted.
constructor TsCustomWorksheetGrid.Create(AOwner: TComponent);
begin
...
AutoAdvance := aaDown; //delete this
...
end;
I hope it will be fixed soon.