Comment peut-on assigner du RichText au composant TQRRichText de QuickReport ?
J'essai ceci et j'ai une erreur "RichEdit Line insertion error" :
var
s : string;
begin
s :=
'{\rtf1\ansi' +
'{\fonttbl\f0\fnil\fcharset0 Arial;}' +
'{\colortbl ;\red128\green128\blue128;}'+
'\cf1 Commentaire : \cf0 Ceci est le texte du commentaire'+
'}';
QRRichText1.Lines.Add(s);
Partager