MDI Child in VB 2005

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Hemant Pathak
    Recognized Expert New Member
    • Jul 2006
    • 92

    MDI Child in VB 2005

    Hi rpogrammers ............... ..

    now i m switch vb 6.0 to 2005 and i m suffring to make mdi child form how can i make the child form from vb 2005 in case of vb it is property but no property appers in case of vb 2005 any body help me
  • twinklechopra24
    New Member
    • Jan 2008
    • 1

    #2
    Originally posted by Hemant Pathak
    Hi rpogrammers ............... ..

    now i m switch vb 6.0 to 2005 and i m suffring to make mdi child form how can i make the child form from vb 2005 in case of vb it is property but no property appers in case of vb 2005 any body help me

    Here is the code please try this
    write this code in click even of any option in parent from
    Dim f As New Form1
    f.StartPosition = FormStartPositi on.Manual 'here's the key
    f.Left = 0
    f.Top = 0
    f.MdiParent = Me
    f.Show()

    Comment

    Working...