Hi there,
I get this message when I run a program with dynamically created TsScrollbars. Perhaps I'm missing a mandatory property, but I don't see which one. I'm in Lite, so can't see in the source what is exactly failing. Here is a scrollbar of mine…
YScrollBar := TsScrollBar.Create(MainForm);
with YScrollBar do
begin
Parent := MainForm;
Kind := sbVertical;
Left := OriX + Surface.Width +5;
Top := OriY;
Width := 15;
Height := Surface.Height;
Name := 'YSB' + ITS(Self.Index);
Tag := Self.Index;
SkinManager := Main.sSkinManager1;
end;