Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
1
Answer
Close the second child form if one form is already open
Ankush
8y
308
1
Reply
I have created windows application in which there is a parent form with many child forms. Now what I want to do is, Close the second form if first form is opened. I have menustrip control, that is disabled once any form is opened and enabled if form is closed. Now I have added shortcut keys in menu strip for opening the forms. By using the shortcut I open the first form, then again by using shortcut, the second form is opened and the first form is closed instead of second form.
The code I wrote :-
void MDIParent1_MdiChildActivate(object sender, EventArgs e)
{
if (this.MdiChildren.Count() > 1)
{
foreach (Form childForm in this.MdiChildren)
{
if (childForm != this.ActiveMdiChild)
{
childForm.Close();
return;
}
}
}
}
Thanks in Advance !!!!
Post
Reset
Cancel
Answers (
1
)
Next Recommended Forum
Generate Excel file readonly using c#.net
How to display and store app rating my google circle friends