[RESOLVED] Close intro form
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
Code:
MDIMainParentForm.Show()
Me.Close()
both forms close.
If I do
Code:
MDIMainParentForm.Show()
Me.Hide()
the project doesn't close when the main form is closed.
I do
Code:
MDIMainParentForm.Show()
and, of course, the intro form remains open.
How can I close the intro form without closing the main form?