Ich kann einfach den Fehler nciht finden wieso mein Panel nicht angezeigt wird. kann mir jemand helfen?
Delphi-Quellcode:
// Status Panel generieren
Status_Panel := TPanel.create(form1);
Status_Panel.Parent := form1;
Status_Panel.Left := 0;
Status_Panel.Height := 33;
Status_Panel.Top := 991;
Status_Panel.Width := 1024;
Status_Panel.Ctl3D := false;
Status_Panel.Color := clbtnface;
Status_Panel.Visible := true;
//Status_Label generieren
Status_Label := TLabel.Create(Form1);
Status_Label.Parent := Status_Panel;
Status_Label.Caption := 'hallo';
Vielleicht bin ich auch einfach nur blind!