views:

61

answers:

1

hi

does anyone know how to maximize a form from another formin c#

i tried the code below but it wont work

Form1 form1 = new Form1();
form1.WindowState = FormWindowState.Maximized;

any ideas

+2  A: 

Well two possible problems, either you don't get any form at all, then the solution is to Show the form.

Form1 form1 = new Form1();
form1.WindowState = FormWindowState.Maximized;
form1.Show();

But I guess that you already have a form1 loaded somewhere, then you can not use

Form1 form1 = new Form1();

because then you creates a new form that you don't display, remove this line and find a way to pass a reference to form1 from where it was originally created to the method where the above code is located.

Albin Sunnanbo