MDI in VB.NET?
-
Any ways to do MDI in VB.NET? Sonork 100.41263:Anthony_Yio
-
Any ways to do MDI in VB.NET? Sonork 100.41263:Anthony_Yio
Yes, what particular problems are you having?
Paul Watson wrote: "At the end of the day it is what you produce that counts, not how many doctorates you have on the wall." George Carlin wrote: "Don't sweat the petty things, and don't pet the sweaty things." Jörgen Sigvardsson wrote: If the physicists find a universal theory describing the laws of universe, I'm sure the asshole constant will be an integral part of that theory.
-
Yes, what particular problems are you having?
Paul Watson wrote: "At the end of the day it is what you produce that counts, not how many doctorates you have on the wall." George Carlin wrote: "Don't sweat the petty things, and don't pet the sweaty things." Jörgen Sigvardsson wrote: If the physicists find a universal theory describing the laws of universe, I'm sure the asshole constant will be an integral part of that theory.
-
Yes, what particular problems are you having?
Paul Watson wrote: "At the end of the day it is what you produce that counts, not how many doctorates you have on the wall." George Carlin wrote: "Don't sweat the petty things, and don't pet the sweaty things." Jörgen Sigvardsson wrote: If the physicists find a universal theory describing the laws of universe, I'm sure the asshole constant will be an integral part of that theory.
-
Create a (parent) form and set the form's IsMdiContainer property.
- <parent>.IsMdiContainer = True
Create a child form and set the child's MdiParent property to point to the parent form.
- <child>.MdiParent = Me
-
Create a (parent) form and set the form's IsMdiContainer property.
- <parent>.IsMdiContainer = True
Create a child form and set the child's MdiParent property to point to the parent form.
- <child>.MdiParent = Me
Any specifc URL or tutorial on this. I would want it to be short and simple as I am used to program in VB. thanx in advance Sonork 100.41263:Anthony_Yio
-
Any specifc URL or tutorial on this. I would want it to be short and simple as I am used to program in VB. thanx in advance Sonork 100.41263:Anthony_Yio
There is a LOT of resources on MDI for VB.NET out there! You just have to look for it... Some good articles from Microsoft Getting Started with Windows Forms Working with MDI Applications and Creating Menus Or you could just look at a piece of code... MDI Demo
-
Create a (parent) form and set the form's IsMdiContainer property.
- <parent>.IsMdiContainer = True
Create a child form and set the child's MdiParent property to point to the parent form.
- <child>.MdiParent = Me