Question Create, Resize and Modify a MDI Form

vicdeveloper

Member
Joined
Jun 26, 2016
Messages
11
Programming Experience
Beginner
Hello,


Im working on a POS project for learning and studying purpose, and I want to know how can I create a MDI form and all of controls inside can resize as well as I need.


For example:


Starts the MDIform in a Window Default State and Position, and if I minimize it all controls inside my mdi parent resize as well too.


I hope to be clear to understand me.


See ya,
 
Your question is really rather vague. Please be specific. What exactly have you tried and what exactly are you having issues with? If you haven't tried anything then maybe that's your problem. There's plenty of information around about MDI in .NET. Don't wait for us to explain everything to you. Do your own research, make an attempt and then, when you strike an actual issue, we'll be more than happy to help you overcome it.
 
I found it!.


In my toolstripmenuitem from form2, I have the code below:
dim form2 as new form2
form2.mdiparent=me
form2.show()

It will show me my form2 as a child in my mdi parent. Is needed to set Is a Mdi Container property to True.


See ya,
 
Back
Top