mdi form control

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

Hi :

If I want to do the following :

SystemForm = New mainform ' is a mdi container form

Application.Run(SystemForm)

after run this form and then immediate pop up another modal form
(not a mdi child form)

that's mean first open the mainform and then pop up the dialog form
How can do it ?

Thanks
 
Tom,

Not nice, however try to set System.Form show in your load event of that and
than

frm as new formdialog
frm.showdialog

I hope this helps,

Cor
 
but it still show the dialog form first and
the mdi form show until I close the dialog form
 
Tom said:
but it still show the dialog form first and
the mdi form show until I close the dialog form

\\\
Me.Show()
Dim f As New ChildForm()
f.ShowDialog()
///
 
Back
Top