Hallo,
< Dies funktioniert ohne
Exception aber auch ohne Ergebnis, myLabel wird nicht angezeigt. >
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var
myLabel : tixlabel;
begin
myLabel := tixlabel.Create(Form1); // <- Breakpoint
end;
2 Schwachpunkte
1. warum Form1 und nicht Self, Form1 könnte auch NIL sein
2. myLabel.Parent:= Self; // ohne das wird das Label nicht angezeigt.
Deine Schutzverletzung kommt wie es aussieht von einem NIL
Access.
Heiko