My intro form is the startup for the project. The user clicks on a button on the intro form to get the main form. At that point I want the intro form to close. If I do
both forms close.Code:MDIMainParentForm.Show() Me.Close()
If I do
the project doesn't close when the main form is closed.Code:MDIMainParentForm.Show() Me.Hide()
I do
and, of course, the intro form remains open.Code:MDIMainParentForm.Show()
How can I close the intro form without closing the main form?




Reply With Quote