I have got an MDI Project which automatically opens a child form. From that child form, I then want to open another child form. How is this done. This is what I am doing to open the first child form. Under the MDI form:
VB Code:
Dim frm As New frmStep1 frm.MdiParent = Me frm.Show()
This however does not work from a child form as it is not an MDI form. Any ideas?
