Hi,
I can select memo field (configured as RichText) as rendered html:
select somehtmlfield from sometable
and have rendered html output:
"normal bold"
or select it as html string
select Cstr(somehtmlfield) from sometable
and get
"<div>normal <b>bold</b></div>
Is there any way to produce...