VendorVersion

Top  Previous  Next

Object: EHL7.HL7Vendors

FileName: EHL7.dll

 

PROPERTY

 

Name: VendorVersion

DataType: String

Mode: Readonly

Description: The HL7 Version for the vendor opened with the OpenVendor() method.

 

 

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.VendorVersion

End Sub