How to launch a child form a child form?

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
 
H

Herfried K. Wagner [MVP]

* "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()
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top