Zitat von
PierreB:
Zitat von
Sir Rufo:
Hi, also dass mit dem WindowState := wsMaximized ist schon völlig korrekt.
Im Objekt-Inspektor lass das mal auf wsNormal stehen und im Programm selbst (OnCreate oder OnShow geht beides) setzt Du die Eigenschaft. Das funktioniert dann 1a.
Hallo Sir Rufo,
habe ich bereits ausprobiert (habs sogar ins Form.Create & Form.Show gesetzt), leider ohne Erfolg.
Komisch, ich auch und das funzt 1a ...
So sind die Einstellungen von meinem Form
var
Form3: TForm3;
Form3 := TForm3.Create(Self);
with Form3 do
begin
Name := 'Form3';
Left := 0;
Top := 0;
Width := 391;
Height := 270;
Caption := 'Form3';
Color := clBtnFace;
Font.Charset := DEFAULT_CHARSET;
Font.Color := clWindowText;
Font.Height := -11;
Font.Name := 'Tahoma';
Font.Style := [];
OldCreateOrder := False;
OnCreate := FormCreate;
OnShow := FormShow;
PixelsPerInch := 96;
end;