views:

17

answers:

1

Is there a control in vb.net that is specifically designed for displaying content larger than the control itself?

I know it's possible to code your own using a panel and two scrollbars, but is there an already existing method for this?

Thanks for your help

+1  A: 

All control containers, such as Panel, FlowLayoutPanel etc. have AutoScroll property, which does what you want.

GSerg