Is there any way to stop the user resizing the form?
Currently I am using:
When form size changed....
MainForm.Height := 761; MainForm.Width := 7
you can added code at Events "OnCanResize":
Resize := False;
Example:
procedure TF_NameForm.FormCanResize(Sender: TObject; var NewWidth, NewHeight: Integer; var Resize: Boolean); begin Resize := False; end;