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:
  1. Dim frm As New frmStep1
  2.  
  3. frm.MdiParent = Me
  4.  
  5. frm.Show()

This however does not work from a child form as it is not an MDI form. Any ideas?