I have this code:
private void linkLabel1_LinkClicked_1(object sender, LinkLabelLinkClickedEventArgs e)
{
Form8 of = new Form8();
of.ShowDialog();
}
That button opens my form8 (good). But if I click twice, the form duplicates, so I got 2 same form8.
Does any body knows how to just select (bring to front) the form8 if it is already open, when I click the linklabel for second time. Thanks!