SetupComplete

Top  Previous  Next

Object: EHL7Interface.eUtilities

FileName: EHL7Interface.dll

 

PROPERTY

 

 

Name: SetUpComplete

DataType: Boolean

Mode: Readonly

Description: Returns a boolean indicating whether the installation settings are all valid.  When called this property attempts to determine two things.

1. Is the VendorPath property a valid folder?
2.Are the EasyHL7 Vendor folders actually installed in that folder?

 

Example:

 

Dim myInterfaceObj As New EHL7Interface.eUtilities

 

If myInterfaceObj.SetUpComplete Then

       MsgBox "Everythings good, vendor files are installed in: " & myInterfaceObj.VendorPath

Else

       myInterfaceObj.ShowConfiguration()

       If Not myInterfaceObj.SetUpComplete Then

               Msgbox "Try again later"

               'Now get out and exit program

       End If

End If

 

See Also: VendorPath, ShowConfiguration()