how I can open e MDI form

I'm new in VB.net

Answer this question

how I can open e MDI form

  • bogomil

    What do you mean   

    Rules for MDI is to have at least one MDIParent (set in the properties of the form), and whenever you create an instance of a form for that parent, you set the MdiParent to that form.

    Dim NewForm as Form1 = new Form1()

    NewForm.MdiParent = me
    NewForm.Show()


  • how I can open e MDI form