EsbTerm

Description

EsbTerm() terminates the VB API and releases all system resources used by the VB API.

Syntax
EsbTerm (hInst)
ByVal hInst As Long

Parameters

hInstEssbase VB API instance handle.

Return Value

None.

Notes

Access

This function requires no special access.

Example

Declare Function EsbTerm Lib "ESBAPIW" (ByVal hInst As Long) As Long
Sub ESB_Term ()
   Dim sts As Long

   '*****************************
   ' Terminate the Essbase VB API
   '***************************** 
   sts = EsbTerm (hInst)
End Sub

See Also

EsbInit()