ParsingCharacters

Top  Previous  Next

Object: EHL7.HL7Vendors

FileName: EHL7.dll

 

PROPERTY

 

Name: ParsingCharacters

DataType: String

Mode: Readonly

Description: See the HL7 rules for parsing characters. The parsing characters used when processing files received via TCP/IP.  The parsing characters are returned in the form of a string delimited with the "|" character containing 3 elements containing the ascii values (in Hexadecimal notation delimited with a comma) of the following parsing variables:

1.The BOM - Beginning of message character(s). (Default: 0B)
2.The EOM - End of message character(s). (Default: 1C, 0D)
3.The SegmentDelimiter - Character(s) used as the segment delimiter when parsing HL7 messages. (Default: 0D)

 

Example value: 0B|1C,0D|0D

 

See Also: VendorsXML(), UpdateVendor(), ShowVendors(), Vendor Maintenance

 

Example:

 

Private Sub VendorTest()

Dim myVendorObj As New EHL7.HL7Vendors

Dim strVendorID As String

myVendorObj.VendorPath = "C:\EasyHL7"

strVendorID = myVendorObj.GetVendorID("Default","2.3")

If strVendorID = "" Then

    MsgBox myVendorObj.LastError

    Set myVendorObj = Nothing

    Exit Sub

End If

If Not MyVendorObj.OpenVendor(strVendorID) Then

    MsgBox myVendorObj.LastError

    Set myVendorObj = Nothing

    Exit Sub

End If

MsgBox myVendorObj.ParsingCharacters

End Sub