tags:

views:

42

answers:

1

I'm trying to force an always maximize setting.

Thanks

+1  A: 

This will do it:

  1. Set your child form's WindowState property to Maximized.

  2. Set your child form's FormBorderStyle property to FixedDialog.

  3. In your child's Resize event set the ControlBox property to False.

Jay Riggs