Open a child form [Resolved]

maria

New member
Joined
Jul 28, 2005
Messages
4
Programming Experience
1-3
Hello There,

can someone tell me how can i open a child form from another child form?

Thanx
Maria
 
Actually it goes very same like you do that when you are opening new form from MDI Parent form ... i.e.
VB.NET:
[size=2][color=#0000ff]Dim[/color][/size][size=2] nForm [/size][size=2][color=#0000ff]As[/color][/size][size=2] Form
 
nForm = [/size][size=2][color=#0000ff]New[/color][/size][size=2] Form3
 
nForm.MdiParent = [/size][size=2][color=#0000ff]Me[/color][/size][size=2].MdiParent
 
nForm.Show()

Also take a look at the attached project/demo

Cheers ;)
[/size]
 

Attachments

  • OpenOneFromAnother.zip
    36.7 KB · Views: 28
Back
Top