Topic: How to Panel scrollbars ? or Form1

How to Panel scrollbars ?  or Form1

http://s49.radikal.ru/i125/1506/ac/a36e5f7b2f17.jpg

Re: How to Panel scrollbars ? or Form1

You can enable scrolbars only for form, an example:

 Form1.VertScrollBar.Range := 1000;
 Form1.VertScrollBar.Tracking := True;

 Form1.HorzScrollBar.Range := 1000;
 Form1.HorzScrollBar.Tracking := True;
Dmitry.

Re: How to Panel scrollbars ? or Form1

Thanks Dmitry wink