Hello friends,
Well i have very little Problem with MDI form . when i m opening MDI child Form in MDI Parent as Maximize Windows Status than its not opening as properly i dont know why its happening with that if you have any idea to solve my problem then let me know....
i m sending you Print Screen of my problem please check it....
thanks in Advance
Loading

Naeem KhanPosted Feb 8, 2010, 11:21 PM
i really thanking you for the reply but still its not working in my system ........ again is the same problem..... i sent you print screen of my form did you get it not if not then will mail you again... its urgent..........
thanks in Advance
Kirtan PatelPosted Feb 8, 2010, 7:13 AM
its working properly with below code. .
private void button1_Click(object sender, EventArgs e)
{
Form2 f2 = new Form2();
f2.WindowState = FormWindowState.Maximized;
f2.MdiParent = this;
f2.Show();
}
if my code help you than please check "Do you like this answer" check box :)