How to make a form non-resizeable

Hi ,

I would like to fix the form size and make it non-resizeable.

May I know which form properties should I be using

Thanks



Answer this question

How to make a form non-resizeable

  • David Brazier

    alwz_nikhil wrote:
    Or u can set the Form's MaximizeBox property to false.
    so that there won't be maximize option for the form.


    No, by doing this you still can resize the form.

    To fully disable it you use the Form.FormBorderStyle property and set this to Fixed3D, FixedDialog, FixedSingle or FixedToolWindow.


  • pknepper

    You can set the FormBorderStyle property.



  • noeldp

    Or u can set the Form's MaximizeBox property to false.
    so that there won't be maximize option for the form.

  • How to make a form non-resizeable