How to disable a form being resized

  • Thread starter Thread starter Yuelin
  • Start date Start date
Y

Yuelin

Hi there

How can I disable a form being resized? i can't find a property in the
property window to do this.

Thanks

yuelin
 
Yuelin,
Change the FormBorderStyle to one of the Fixed values: FixedSingle, Fixed3D,
FixedDialog, and FixedToolBar.

The FormBorderStyle property is under the Appearance category.

Hope this helps
Jay
 
Just try a different border style and get rid of the maximize button on the
Toolbox.
 
Yuelin,

Set the property Form.FormBorderStyle to something else than Sizeable. Set
it toFixedDialog for example (which still allows minimizing and maximizing)

Regards, Jim
 
Back
Top