Page 1 of 1

OBX Observation value

Posted: Mon Apr 06, 2015 8:44 pm
by lucas.amiune
Hi there,

I'm trying to save some RTF tags into OBX-5 field using HL7 version 2.3.1 on messages type ORU^R01, when I save the RTF tags into TdiNodeData.AsString it's all fine.
But when I try to save in TdiOBX_231.ObservationValue[0] the TdiNodeData appears with some character like '\E'

I would like to know if there is anyway to avoid this character to be inserted on my String.
========

i.e.
foo: TdiNodeData;
obx: TTdiOBX_231;

foo.AsString := '{\rtf1\par';
obx.ObservationValue[0] := foo; //<--- This foo value is '{\E\rtf\E\par'

Can someone help me?

Re: OBX Observation value

Posted: Tue Apr 07, 2015 5:25 am
by admin
Hi,
Please use Value property instead AsString property.

Best regards.

Re: OBX Observation value

Posted: Tue Apr 07, 2015 11:42 am
by lucas.amiune
Thank you very much!

It Worked.