hoi
also ich habe eine procedure in mein project eingefügt...
Delphi-Quellcode:
procedure AddColoredLine(ARichEdit: TRichEdit; AText: string; AColor: TColor);
begin
with ARichEdit do
begin
SelStart:=Length( Text);
SelAttributes.Color:=AColor;
SelAttributes.Size:=8;
SelAttributes.Name:='MS Sans Serif';
Lines.Add( AText);
end;
end;
was ist hieran denn wieder falsch?
gruss silent