Hello

How are you people doing ?

Anyways ...

I have a Question ,,

I have this assignment and I didn't Understand the Question ... It seems Easy but part three is Diffrecult to Understand ..

the problem is they asked Us to do an Editor using an MDI , that is lets say smilar to Photoshop Idea , that the Menustrip will control Each rich text box on each child Window ,,

how Ever they asked us to do a Window menu "a menu to display a list of the open child windows and their layout options."

is that like a (Window ( Child1( Data), Child2( Data).....etc. )) >>> the ()<< means the extention contents =)

please Tell me if I understood =)

thanks

Recommended Answers

All 2 Replies

- Make MDI Parent
Set On Form properties (form that u want it be a parent)
IsMdiContainer = True

- Make MDI Child
Add this Code when you call new form as a child, ex :

Private Sub MenuSubNew_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuSubNew.Click
Dim NewMDIChild as New Form2()

'Make form 1 (this form) as Parent in MDI Child
NewMDIChild.MdiParent = Me
' Show form2 as child
NewMDIChild.Show()
End Sub

Thanks but that isn't my Question :D

the Question is is the one between Quotes as applyed below it :D

Thanks again:)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.