EnvelopSupport

Specifies if the HL7 message/data stream should support a start and end envelop character.

Syntax

object.EnvelopSupport [ = Boolean]

The EnvelopSupport property syntax has these parts:

Part Description
object An object expression that evaluates to the HL7 control.
Boolean A boolean expression that is set to true if envelop support should be used or else it is set to false if envelop support should not be used.

Remarks

EnvelopSupport of an object is initiated at design time or at runtime by setting a boolean
expression.  If it is set to true then envelop support should be used,  if it is set to false then
envelop support should not be used.

Example

Private Sub Form_Load()

Hl7cntl.EnvelopSupport = True
Hl7cntl.EnvelopStartChar = 11
Hl7cntl.EnvelopEndChar = 28


If Len(App.Path) > 3 Then
   Hl7cntl1.HL7Path = App.Path & "\"
Else
   Hl7cntl1.HL7Path = App.Path
End If

Hl7cntl1.HL7Version = ".v22"          ‘msgRules.v22, segDefs.v22 files

Hl7cntl1.Init
.
..
...

 

Back to Home Page.

This page, and all contents, are Copyright © 1998 by Gary M. Gallagher.
Sparrow Technologies Incorporated - http://www.sparrow-technologies.com