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

  • rnv

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

  • sansliguy

    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.


  • jeffwu-2002

    You can set the FormBorderStyle property.



  • How to make a form non-resizeable