Mdi Non-Child Form Question
Hi everybody,
I've got a program that needs to pop-up a few non-child forms the moment the MDIform loads. So I'd expect to just write a sub which opens a non-child form like this:
Private Sub MakeNonChild()
Dim FormX As Form
FormX = New Form
FormX.Owner = Me
FormX.Show()
End Sub
And then call that function in the Load event of the MDIform.
The strange thing is the form pops up allright, but it's completely disabled and I can't get it enabled in any way.
I then proceeded to make a button on my MDIform which also calls the MakeNonChild method and if I use that, it works perfectly.
Does anyone have any suggestions as to why it goes wrong in the load event?
Thx in advance!
|