VendorsXML |
Top Previous Next |
Object: EHL7.EHL7Processor FileName: EHL7.dll
PROPERTY
Name: VendorsXML DataType: String Mode: Readonly Description: Returns an XML string with vendor information
Example:
Dim myProcessorObj As New EHL7.EHL7Processor myProcessObj.VendorPath = "C:\EasyHL7" MsgBox myProcessObj.VendorsXML If myProcessObj.IsError Then MsgBox myProcessObj.LastError End If Set myProcessObj = Nothing
See Also: QSXML Object, the VendorsXML() method of the HL7Vendors object
Example XML String:
<VENDORS COUNT="3"> <VENDOR ID="63578DEA-9541-4663-B484-111919054FBC" NAME="Default" DESCRIPTION="EasyHL7 default vendor for version 2.3" VERSION="2.3" FIELDSEPARATOR="|" ENCODINGCHARS="^~\&" PARSINGCHARS="0B|1C,0D|0D" /> <VENDOR ID="10D80A28-6A2C-4AD3-8080-32924F02F0CE" NAME="Default" DESCRIPTION="" VERSION="2.4" FIELDSEPARATOR="|" ENCODINGCHARS="^~\&" PARSINGCHARS="0B|1C,0D|0D" /> <VENDOR ID="5ABE45FC963631449F077FA15F28E69B" NAME="Labcorp" DESCRIPTION="Labcorp vendor created by me" VERSION="2.3" FIELDSEPARATOR="|" ENCODINGCHARS="^~\&" PARSINGCHARS="0B|1C,0D|0D" /> </VENDORS>
*Notes: The ID attribute is the GUID assigned to the vendor, this ID number is used frequently throughout the system. In the EasyHL7.exe program, this method is used to populate Listboxes for the user to select which vendor definition to use. |