Thema
:
Delphi
Texte dynamisch zusammenfügen
Einzelnen Beitrag anzeigen
LordPsychoter
Registriert seit: 6. Mai 2008
Ort: 48720
55 Beiträge
Delphi 7 Professional
#
10
Re: Texte dynamisch zusammenfügen
21. Mai 2008, 11:59
Und warum dafür extra Label?
markieren
Delphi-Quellcode:
var
txt :
string
;
txt2:
string
;
begin
txt := '
Ich bin ein Text
';
txt2:= '
Ich auch
';
memo1.lines.add(txt+edit1.caption+txt2);
end
;
end
.
lg
LordPsychoter
Zitat
LordPsychoter
Öffentliches Profil ansehen
Mehr Beiträge von LordPsychoter finden