vote up 2 vote down star

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?

I'm using Delphi 2007.

flag

5 Answers

vote up 14 vote down check

TForm has the property you need. Set

BorderStyle to bsSingle

so that the form doesn't appear to be sizable, and it has the added benefit of actually not being sizable. :-)

link|flag
vote up 3 vote down

You can set the BorderStyle to bsDialog.

link|flag
vote up 3 vote down

Don't forget about the Constraint properties of TForm, i.e. MaxHeight, MinHeight, MaxWidth, MinWidth.

link|flag
Also OnCanResize, OnConstrainedResize events. – TOndrej Jan 28 at 16:56
vote up 1 vote down

You can set the BorderStyle to bsSingle, too. That will give you a proper top level frame, with icon and everything.

link|flag
vote up 0 vote down

And if you want to get really geeky (i.e. the answers above are better), you can intercept the RESIZE Windows message.

I would go with the Constraints property myself.

Cheers

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.