SegmentDelimiter

Top  Previous  Next

Object: EHL7.HL7Vendors

FileName: EHL7.dll

 

PROPERTY

 

Name: SegmentDelimiter

DataType: String

Mode: Readonly

Description: See the HL7 rules for parsing characters. The parsing character(s) used by EasyHL7 when reading HL7 messages using the Vendor and the EHL7Message Object.  The HL7 standard default value is the carriage return Ascii character 13 (Hex '0D').

 

 

See Also: VendorsXML(), UpdateVendor()

 

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