[Lazarus] Form always 400 x 300 initially

Bart bartjunk64 at gmail.com
Fri Dec 18 14:39:17 CET 2009


You mean that this does not work?

TMyForm = class(TCustomForm)
public
  constructor Create(AOwner: TComponent); override;
end;

consructor TMyForm.Create(AOwner: TComponent);
begin
  inherited Create(AOwner);
  Width := 640;
  Height := 480;
end;

Bart




More information about the Lazarus mailing list