|
|||||
|
Use the EasyHL7Message Object to read / write HL7 data. Message objects can only be created by HL7Vendor Objects (see the NewHL7Message method).
For more info see: Properties and Methods
Object Creation:
Dim oMessage As EHL7_MC2005.EasyHL7Message Private oMessage As EHL7_MC2005.EasyHL7Message Public oMessage As EHL7_MC2005.EasyHL7Message Friend oMessage As EHL7_MC2005.EasyHL7Message
Then Instantiate the Object like so: 'Where oVendor is a valid HL7Vendor object with an open vendor definition oMessage = oVendor.NewHL7Message()
DO NOT DO THIS:
Dim oMessage As New EHL7_MC2005.EasyHL7Message Private oMessage As New EHL7_MC2005.EasyHL7Message Public oMessage As New EHL7_MC2005.EasyHL7Message Friend oMessage As New EHL7_MC2005.EasyHL7Message
|