Hello,
There is a need to update few more lines in code.
1) Move SetVisible of TNxCustomScrollBar to protected and add virtual:
procedure SetVisible(const Value: Boolean);
virtual;and change it to:
CODE
procedure TNxCustomScrollBar.SetVisible(const Value: Boolean);
begin
FVisible := Value;
end;
2) Add in TNxScrollBar inside protected:
procedure SetVisible(const Value: Boolean); override;
CODE
procedure TNxScrollBar.SetVisible(const Value: Boolean);
begin
inherited SetVisible(Value);
Windows.ShowScrollBar(FOwner.Handle, BarFlag, Value);
end;
I hope that this help. I have update files inside users area too.
regards