Du solltest erst einmal den Namen der Variabel ändern, da Name ein bekannter Bezeichner ist - nicht nötig, aber besser
Code:
var lblName: TLabel;
...
lblName := TLabel.Create(Form1);
lblName.AutoSize := False;
lblName.Visible := True;
lblName.Top := 56;
lblName.Left := 408;
lblName.Width := 220;
lblName.Caption := 'Text:';
[color=#ff0000]lblName.Parent := Form1;[/color]
...
...