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
5
Answers
How can Stop if Form Already Open..
Feroz Khan
8y
441
1
Reply
Dear,
How can stop if form already open.
For Example i showed my form in panel but when i click its opening again and again so how can i stop this.. when i click one time should be open if i click second time should be not open again..
below my code..
private void Store_information_button_Click(object sender, EventArgs e)
{
try
{
StoresInformation storeinformation = new StoresInformation();
storeinformation.TopLevel = false;
Showing_Data_panel1.Controls.Add(storeinformation);
storeinformation.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
storeinformation.Dock = DockStyle.Fill;
storeinformation.Show();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
Post
Reset
Cancel
Answers (
5
)
Next Recommended Forum
c# constructor issues
c# code for when upload file to send secret key into mails