name any three child windows present on the main VB window ?
Answers
Explanation:
i don't know sorry you can ask from any one else
Answer:
Given below is the answer
Explanation:
establishing a child window
Your application should have a new form added. Set this form's IsMDIContainer parameter to true to make it the parent form. To the parent form, a MainMenu can be added, with choices to open a fresh child form, close an existing child form, switch between child forms, and alter the layout style of child forms.
making a template for a kid form
Include a second form that will serve as the model for the subsequent forms. You can build a new instance of this template form and set the first form as its parent form each time you want to create a new child window for your application.
//Create a new instance of the MDI child template form
Form2 chForm = new Form2();
//Set parent form for the child window
chForm.MdiParent=this;
//Display the child window
chForm.Show();
See more:
https://brainly.in/question/43458070
#SPJ3