Hi,
I have to questions:

1 Is there a way to create a MDI child without having to use a
base form.
So what I do now:
Dim Document As New MYMDI()
Document.MdiParent = Me
Document.Show()
and what I'd want to use:
MYMDI.MdiParent = Me
MYMDI.Show()

2 How can I see if a form has allready been loaded?
somethin like:
If Form Is Loaded then
unload Form
EndIf


John