
Originally Posted by
marpis
How to make my form unresizeable? Damn i looked hard but could not find the way!
Go to Tools, Form Editor. Click on the blank form that comes up. Look in the Object Inspector to find 'Border Style'.

(WTF, no images?)
See the values in the combo box? bsSizeable is the default. bsSingle means that it won't allow resizing. bsDialog will also make it non-sizeable, For most purposes you can use whichever you perfer (there are some differences, but probably nothing that will affect you).
So, go back to your code where you set the form up and put in a new line to set the BorderStyle.
Remember, BorderStyle is a member of the form variable, so it'll either be something like
Code:
frmDesign.BorderStyle := bsSingle;
or
Code:
with frmDesign do
begin
BorderStyle := bsSingle;
end;