Form Question!

albertkhor

Well-known member
Joined
Jan 12, 2006
Messages
150
Programming Experience
Beginner
i have 3 question:
1) how to let the form Maximize when start running it.
2) i have two form, the first form have panel, i want the second form open in first form panel, is that possible? how?
3) how to make all components (textbox, label, etc) enlarge when user change the form size? (system is running)

poor english sorry!
 
Hmmm... a thread entitled "Form Question!". I'm guessing that that would be more appropriately posted in the Windows Forms forum. Moved.

1. Set the WindowState property.
2. Yes it is but it is not a good idea. If you want to open one form inside another form then you should be building an MDI (multiple document interface) application. You can read about MDI and how to use it in the help/MSDN library.
3. You need to look at the Anchor property of a control to control how it behaves relative to the form as the form changes size.
 
Last edited:
Back
Top