I have a windows app in VS 2005 ... the main form has three panels (two skinny ones across the top and the third down the left side) and a webbrowser control that occupies the lion's share of the form in the lower right. Is it possible to set things up so that if the user changes the size of the form (by either hitting the Maximize button or dragging the lower right hand corner) to automatically have the web browser control and the left hand panel (which extends to the bottom of the form) get larger or smaller too As it is now, if, say, the form is made larger the added space is just empty space.
Thanks.

Dynamic Control Size as Form Size Changes
Aleniko29139
Yes, Look at the dock and anchor properties of the controls. Anchor is probably more likely what you need.
You can anchor them to all 4 sides of the form so that when you expand and contract the form they will resie as well.
You may also want to set a minimum size for the form by setting this property.