I have a pagecontrol in the center of my main form (form1 in my image), and I want to open other forms docked into the pagecontrol. Because I have many controls on my child form, I need both vertical and horizontal scrollbars (on the child form I have active scrollbars option active), but here is the catch: when I use VCL Styles, my scrollbars aren't drawing as they should be and they are unusable. Is this some kind of a bug of VCL Styles?

AutoScroll:=False;,VertScrollBar.Range:=Height*2;The scrollbar shows only with 'Windows' theme. – Sertac Akyuz Apr 25 '12 at 8:19if not Assigned (Form2) then Form2:= TForm2.Create (Application);Form2.ManualDock(PageControl1);Form2.Show;if i don`t have vcl styles enabled it all works fine, but with a vcl style active, the scrollbar om my child form doesn`t draw correctly :( – Cristian Vasuica Apr 25 '12 at 11:34