hi there!
pl help me . in this issue.
how can i close mdi child form in run tinme after certain condition met, like i am using login form in Mdi project after the valid user logs in the login form should close automatically. pl help me...
Printable View
hi there!
pl help me . in this issue.
how can i close mdi child form in run tinme after certain condition met, like i am using login form in Mdi project after the valid user logs in the login form should close automatically. pl help me...
Simply type:
Unload MDIChild
where MDIChild is the name of the child form. You can use that to completely unload the form, or if you just want to hide it, you can type:
MDIChild.Hide
Either one will work to simply remove it from the user's screen. However, unloading it will free up more memory.