Posts by Lincoln Garcez • 11 points
1 post
-
1
votes3
answers134
viewsA: How to open only one form even by multiple clicking C#
Check instance. If it exists, bring forward and maximize. if (Application.OpenForms.OfType<Form1>().Count() > 0) { Application.OpenForms["Form1"].BringToFront();…