Description

Top  Previous  Next

Object: EHL7.HL7Vendors

FileName: EHL7.dll

 

PROPERTY

 

Name: Description

DataType: String

Mode: Readonly

Description: The Vendor Description as defined in the vendor object by the creator of the vendor definition.  Max length 100 characters.

 

 

See Also: UpdateVendor(), VendorsXML()

 

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

End Sub