EsbLogout

Logs a user out from an Essbase Server.

Syntax

EsbLogout (hCtx)
ByVal hCtx As Long
ParameterDescription

hCtx

VB API context handle to logout.

Notes

Return Value

None.

Access

To call this function, the caller must have previously logged in successfully using either the EsbLogin() or EsbAutoLogin() functions.

Example

Declare Function EsbLogout Lib "ESBAPIN" (ByVal hCtx As Long) As Long

Sub ESB_Logout ()
   Dim sts As Long   '*******
   ' Logout
   '*******
   sts = EsbLogout (hCtx)
End Sub 

See Also