Open an "About" window....
-
uh I have this form, and then I have this form called about.cs, and I have this.... private void aboutClick(object sender, System.EventArgs e) { ***OPEN ABOUT WINDOW HERE*** } could somebody please fill this in... Thanksssssss. /\ |_ E X E GG
What exactly are you trying to do with the Click? Do you want to close the about window? about.ActiveForm.Hide() Is this where you are trying to open the about window? Form aboutForm = new about(); aboutForm.Show(); It depends on what file the aboutClick() is in.
-
What exactly are you trying to do with the Click? Do you want to close the about window? about.ActiveForm.Hide() Is this where you are trying to open the about window? Form aboutForm = new about(); aboutForm.Show(); It depends on what file the aboutClick() is in.