How to launch a child form a child form?

  • Thread starter Thread starter Eddie B.
  • Start date Start date
E

Eddie B.

What is the best way to go about launching a child form from another child
form which will be contained in the original parent form?

what is happening is I launch my app and a network login form appears. From
that login form I want to launch the next form into the original parent.

Thanks,

Eddie
 
* "Eddie B. said:
What is the best way to go about launching a child form from another child
form which will be contained in the original parent form?

\\\
Dim f As New ChildForm()
f.MdiParent = Me.MdiParent
f.Show()
///
 
Back
Top