this.Hide();
But the problem is..how to unhide that form..So the this is a solution to unhidden the form..
Scenario
You have 2 Form, Form1 and Form2. the situation is form2 was hide and you want to show it back foreach (Form form in Application.OpenForms)
{
if (form is Form2)
{
form.Show();
break;
}
}
By Mohd Zulkamal
NOTE : – If You have Found this post Helpful, I will appreciate if you can Share it on Facebook, Twitter and Other Social Media Sites. Thanks =)
0 comments:
Post a Comment