How to prevent form from being resized in Delphi? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T14:40:16Z http://stackoverflow.com/feeds/question/481036 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/481036/how-to-prevent-form-from-being-resized-in-delphi 2 How to prevent form from being resized in Delphi? Mick 2009-01-26T19:34:53Z 2009-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#481040 3 Answer by Gamecat for How to prevent form from being resized in Delphi? Gamecat 2009-01-26T19:36:56Z 2009-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#481048 14 Answer by Nick Hodges for How to prevent form from being resized in Delphi? Nick Hodges 2009-01-26T19:39:07Z 2009-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#481053 1 Answer by mghie for How to prevent form from being resized in Delphi? mghie 2009-01-26T19:40:24Z 2009-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#485378 3 Answer by Gerard for How to prevent form from being resized in Delphi? Gerard 2009-01-27T21:35:45Z 2009-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#490188 0 Answer by Richard Haven for How to prevent form from being resized in Delphi? Richard Haven 2009-01-29T01:33:32Z 2009-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>