EsbCreateLocalContext() creates a local VB API context for use in local VB API operations.
EsbCreateLocalContext (hInst, User, Password, phCtx)
ByVal hInst As Long
ByVal User As String
ByVal Password As String
phCtx As Long
| hInst | VB API instance handle. |
| User | Currently not used - should be an empty string. |
| Password | Currently not used - should be an empty string. |
| phCtx | Address of variable to receive Essbase Server local context handle. |
If successful, a valid local context handle is returned in phLocalCtx.
This function requires no special privileges.
Declare Function EsbCreateLocalContext Lib "ESBAPIN" (ByVal hInst As Long, ByVal User As String, ByVal Password As String, hCtx As Long) As Long Sub ESB_CreateLocalContext () Dim sts As Long Dim User As String Dim Password As String Dim hCtx As Long '********************* ' Create Local Context '********************* sts = EsbCreateLocalContext (hInst, User, Password, hCtx) End Sub