How are you maximizing the form in code and how are you disabling the maximimize box? If you set the height and width to the entire screen then it is not truly maximized and it will let you move and resize the form. If you send it a maximize window message then it won't. This is how you should maximize it:
private void frmMaximize_Load(object sender, EventArgs e)
{
this.WindowState = FormWindowState.Maximized;
}
You can also toggle between maximized and normal state by double clicking on the form's header and right clicking on the item in the windows task bar -- unless you have disabled those too.
sknake
Industrious Poster
4,954 posts since Feb 2009
Reputation Points: 1,764
Solved Threads: 735