Einzelnen Beitrag anzeigen

Dragon27

Registriert seit: 20. Nov 2003
Ort: Aßling
543 Beiträge
 
Delphi XE6 Enterprise
 
#1

Create von TLabel funktioniert nicht

  Alt 4. Apr 2009, 11:01
Hallo,

habe heute folgenden Code ausprobiert, doch leider wird mir auf dem definierten Form das Label nicht angezeigt

Wisst Ihr warum?


Delphi-Quellcode:
var
    Status:TForm;
    Progress:TJvXPProgressBar;
    anzeige:TLabel;
begin

status:=Tform.Create(nil);
with status do begin
  Position:=poScreencenter;
  width:=385;
  Height:=89;
  color:=clwhite;
  Formstyle:=fsstayontop;
  BorderStyle:=bstoolwindow;
  BorderIcons:=[];
  show;
end;

anzeige:=Tlabel.create(Status);

with anzeige do begin
  Left:=8;
  Top:=9;
  Caption:='Bitte warten... Vorgang wird initialisiert';
  show;
  anzeige.Repaint;
end;
Danke!
Delphi is ......... DELPHI!!
  Mit Zitat antworten Zitat