when window form application is running user can change form size i do not find property of form that do not alow user that change form size thanks for help
views:
212answers:
2
+11
A:
Change FormBorderStyle to FixedDialog, FixedSingle, or Fixed3D. Also, if you do not want them to maximize the form set Maximize to False.
novacara
2009-08-25 19:11:21
thanx novacara
Mary
2009-08-26 13:35:20
A:
The form has MinimumSize and MaximumSize properties that you can set to control this. You might use this if you want to keep the standard form border.
Chris Dunaway
2009-08-25 21:00:12