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

  • MrMad

    You can set the FormBorderStyle property.



  • Sam_dia

    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.


  • eric_l

    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