How to prevent form from being resized in Delphi? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T14:40:16Zhttp://stackoverflow.com/feeds/question/481036http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/481036/how-to-prevent-form-from-being-resized-in-delphi2How to prevent form from being resized in Delphi?Mick2009-01-26T19:34:53Z2009-01-29T01:33:32Z
<p>How do I prevent my form from being resized? I don't want it to be maximized (which can be toggled via the property editor), but I don't want anyone to be able to drag-resize it. Am I missing something simple, or does this require a little bit of coding?</p>
<p>I'm using Delphi 2007.</p>
http://stackoverflow.com/questions/481036/how-to-prevent-form-from-being-resized-in-delphi/481040#4810403Answer by Gamecat for How to prevent form from being resized in Delphi?Gamecat2009-01-26T19:36:56Z2009-01-26T19:36:56Z<p>You can set the BorderStyle to bsDialog.</p>
http://stackoverflow.com/questions/481036/how-to-prevent-form-from-being-resized-in-delphi/481048#48104814Answer by Nick Hodges for How to prevent form from being resized in Delphi?Nick Hodges2009-01-26T19:39:07Z2009-01-26T19:39:07Z<p>TForm has the property you need. Set </p>
<p>BorderStyle to bsSingle</p>
<p>so that the form doesn't appear to be sizable, and it has the added benefit of actually <strong><em>not</em></strong> being sizable. :-) </p>
http://stackoverflow.com/questions/481036/how-to-prevent-form-from-being-resized-in-delphi/481053#4810531Answer by mghie for How to prevent form from being resized in Delphi?mghie2009-01-26T19:40:24Z2009-01-26T19:40:24Z<p>You can set the BorderStyle to <em>bsSingle</em>, too. That will give you a proper top level frame, with icon and everything.</p>
http://stackoverflow.com/questions/481036/how-to-prevent-form-from-being-resized-in-delphi/485378#4853783Answer by Gerard for How to prevent form from being resized in Delphi?Gerard2009-01-27T21:35:45Z2009-01-27T21:35:45Z<p>Don't forget about the Constraint properties of TForm, i.e. MaxHeight, MinHeight, MaxWidth, MinWidth.</p>
http://stackoverflow.com/questions/481036/how-to-prevent-form-from-being-resized-in-delphi/490188#4901880Answer by Richard Haven for How to prevent form from being resized in Delphi?Richard Haven2009-01-29T01:33:32Z2009-01-29T01:33:32Z<p>And if you want to get really geeky (i.e. the answers above are better), you can intercept the RESIZE Windows message.</p>
<p>I would go with the Constraints property myself.</p>
<p>Cheers</p>