We have table with memo field. In this memo field we have rich text format
file. How can we print this field on report. We can extract field into file
on disk and then use append general like in following code:
= StrToFile(Table.mField,'\temp\rtf\aaa.rtf',0)
Select rtf_file
If Reccount() <= 0
Append Blank
EndIf
Append General gField from '\temp\rtf\aaa.rtf'class
"richtext.richtextctrl.1"
Is there any better and faster way to do this?
Thanks,