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:
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
|