change the "Modifiers" property of the panel of Form1 to "protectedinternal" so that it can be accessible from Form2
cool_zephyr
Junior Poster in Training
87 posts since Apr 2009
Reputation Points: 5
Solved Threads: 10
Skill Endorsements: 0
in the FormWindow.Minimized condition
-Form1.panel1.visible=true
cool_zephyr
Junior Poster in Training
87 posts since Apr 2009
Reputation Points: 5
Solved Threads: 10
Skill Endorsements: 0
check if the Form2 is minimized
-if yes, Form1.panel1.visible=true;
cool_zephyr
Junior Poster in Training
87 posts since Apr 2009
Reputation Points: 5
Solved Threads: 10
Skill Endorsements: 0
did you set the "modifiers" property of panel1 to "protected internal" in the property box???
cool_zephyr
Junior Poster in Training
87 posts since Apr 2009
Reputation Points: 5
Solved Threads: 10
Skill Endorsements: 0
first you have to show the form then only the panel will be visible i guess
Form1 dlg = new Form1();
dlg.Show();
dlg.panel7.Visible = true;
cool_zephyr
Junior Poster in Training
87 posts since Apr 2009
Reputation Points: 5
Solved Threads: 10
Skill Endorsements: 0