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 rendered html from string?
I would like to:
select SomeConvertingFunc("<div>something <b>bold</b></div>") from sometable
and have it rendered to "something bold".
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 rendered html from string?
I would like to:
select SomeConvertingFunc("<div>something <b>bold</b></div>") from sometable
and have it rendered to "something bold".