Registriert seit: 30. Jan 2005
Ort: Münster
745 Beiträge
Delphi 3 Professional
|
Re: Formatierten Text in ein TRichEdit einfügen
1. Nov 2005, 13:25
Hallo,
z.B.
Delphi-Quellcode:
with Richedit1 do
begin
SelStart := 2;
SelAttributes.Color := clRed;
SelText := 'Hallo';
end;
MfG Lannes
(Nichts ist nicht Nichts) and ('' <> nil ) and (Pointer('') = nil ) and (@('') <> nil )
|