VendorPath |
PROPERTY - Read / Write Parent Object - HL7Vendor Name: VendorPath Data Type: String Description: Will contain the windows path to the folder where vendor definitions are installed.
Further: The folder must exist. When you GET the value it will always have the trailing backslash ("\") on the folder name. It's not required when setting the value.
Example:
Dim oVendor As New EasyHL7MC40.HL7Vendor
With oVendor 'This is fine .VendorPath = "C:\MyVendors" MsgBox(.VendorPath) 'Would be 'C:\MyVendors\' End With
|