Dear Sirs,
I made a MDI Parent form and two MDI child form. I can open MDI child form
from MDI parent form with;
Dim UserChangePassw ord_Form As New UserChangePassw ord
'Set the Parent Form of the Child window.
UserChangePassw ord_Form.MdiPar ent = Me
'Display the new form.
UserChangePassw ord_Form.Show()
But when I try to open 2nd MDI child form from 1th MDI child form, form will
not open with above code. When I do not use
UserChangePassw ord_Form.MdiPar ent = Me
2nd form opens but out of MDI Parent form. It is open as a another form on
task bar.
How can I open MDI child form from another MDI child form whish will be
located in the MDI parent form.
Best Regards
I made a MDI Parent form and two MDI child form. I can open MDI child form
from MDI parent form with;
Dim UserChangePassw ord_Form As New UserChangePassw ord
'Set the Parent Form of the Child window.
UserChangePassw ord_Form.MdiPar ent = Me
'Display the new form.
UserChangePassw ord_Form.Show()
But when I try to open 2nd MDI child form from 1th MDI child form, form will
not open with above code. When I do not use
UserChangePassw ord_Form.MdiPar ent = Me
2nd form opens but out of MDI Parent form. It is open as a another form on
task bar.
How can I open MDI child form from another MDI child form whish will be
located in the MDI parent form.
Best Regards
Comment