InboundFormat

Top  Previous  Next

Object: EHL7.EHL7Processor

FileName: EHL7.dll

 

PROPERTY

 

Name: InboundFormat

DataType: Enumerator: EHL7InputFormat

Mode: Read/Write

Description: Return/Set the format that the processor will be reading in from files in the folder indicated in the InboundPath property.  The values are HL7 or XML.

 

*Note: The only XML format the EasyHL7 system will read in is the format generated by EasyHL7 objects.  So to set up a file processor that reads in XML files, they must have been created by EasyHL7 objects or exported from HL7 by an EasyHL7 object

 

Example:

Dim x As New EHL7.EHL7Processor

x.IniFileName = "C:\EasyHL7\Profile1.ini"

If Not x.OpenProfile() Then

  Msgbox x.LastError

  Set x = Nothing

  Exit Sub

End If

 

x.InboundFormat = OutputXML