ShowReports()

Top  Previous  Next

Object: EHL7Interface.eUtilities

FileName: EHL7Interface.dll

 

Method

 

Name: ShowReports()

Parameters:

1. sVendorID (optional string default "") identifying the vendor definition files to use

2. sVendorPath (optional string default = "") identifying a path to the vendor files to use

Returns: N/A

Description: Shows the built-in EasyHL7 reports window for the selected vendor.  If you have previously set the VendorID property it is not necessary to it as a parameter.  The same applies to the VendorPath property.

 

 

Example:

Private Sub ViewReports(strVendorID As String)

Dim myInterfaceObj As New EHL7Interface.eUtilities

 

If myInterfaceObj.SetUpComplete Then

       'The interface object will use the default vendorpath

       myInterfaceObj.ShowReports(strVendorID)

       If myInterfaceObj.IsError Then

        Msgbox myInterfaceObj.LastError

    End If

Else

       myInterfaceObj.ShowConfiguration()

       If Not myInterfaceObj.SetUpComplete Then

               Msgbox "Try again later"

               'Now get out and exit program

       End If

End If

End Sub

 

See Also: Definition Reports

 

clip0014