wen i open mdi through the login form, the forms inside the mdi child forms dont seem to execute.pleez help me.

Recommended Answers

All 2 Replies

It would be helpful if you can paste the related code.

the forms inside the mdi child forms dont seem to execute.

First. You can not open a form inside a Child form...

But if you need to open a child form inside a MDI form then. First make the MDI form as the parent of the child form.

For example

Assume
FrmMain is a MDI form
And FrmChild is a normal form.

If you need to show FrmChild inside the FrmMain
Then
First

FrmChild.MdiParent=FrmMain

Then just show the form.

FrmChild.Show()

Hope you Understand......

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.