form size - no resize

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All,
I have an app where I change the size of the form at run time using controls
and I do not want the user to be able to resize the form, I have removed the
min and max buttons. I have tried to set the min and max size to what I want
but now the form will not resize when they should be, it looks like I could
change the min and max size everytime I want to resize the form but this
seems a little cumbersome - - any easy way of doing this??

thanks in advance,
Roger.
 
Set the form's FormBorderStyle property to one of the following:
Fixed3D
FixedDialog
FixedSingle
FixedToolWindow
None

None of these styles allow the user to resize the window.

Tom Dacon
Dacon Software Consulting
 
Back
Top