Hi,

When i am using Borland Delphi for Windows programming, it has a
TScrollBox component, which acts like a panel with optional scrollbars,
which appear if nested components don't fit into panel's area.
Is there such a component in .NET?

PS. I am not talking about HScrollBar and VScrollBar - those are
independent components needed to be specifically handled by programmer.

Thank you in advance,
Andrey

Re: Any 'ScrollBox' control? by lukasz

lukasz
Tue Sep 07 09:02:15 CDT 2004

in .NET it's Panel with property AutoScroll set to true

Uzytkownik "MuZZY" <leyandrew@yahoo.com> napisal w wiadomosci
news:dli%c.18619$vy.13778@attbi_s52...
> Hi,
>
> When i am using Borland Delphi for Windows programming, it has a
> TScrollBox component, which acts like a panel with optional scrollbars,
> which appear if nested components don't fit into panel's area.
> Is there such a component in .NET?
>
> PS. I am not talking about HScrollBar and VScrollBar - those are
> independent components needed to be specifically handled by programmer.
>
> Thank you in advance,
> Andrey



Re: Any 'ScrollBox' control? by hirf-spam-me-here

hirf-spam-me-here
Tue Sep 07 09:57:18 CDT 2004

* MuZZY <leyandrew@yahoo.com> scripsit:
> When i am using Borland Delphi for Windows programming, it has a
> TScrollBox component, which acts like a panel with optional
> scrollbars, which appear if nested components don't fit into panel's
> area.

Some container controls provide an 'AutoScroll' property. Forms have
this property, and Panel controls provide this property too. Simply set
it to 'True' to enable scrolling when the content don't fit into the
control's/form's area.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

Re: Any 'ScrollBox' control? by MuZZY

MuZZY
Tue Sep 07 13:05:00 CDT 2004

MuZZY wrote:
> Hi,
>
> When i am using Borland Delphi for Windows programming, it has a
> TScrollBox component, which acts like a panel with optional scrollbars,
> which appear if nested components don't fit into panel's area.
> Is there such a component in .NET?
>
> PS. I am not talking about HScrollBar and VScrollBar - those are
> independent components needed to be specifically handled by programmer.
>
> Thank you in advance,
> Andrey

THANKS A LOT GUYS!!!