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 | Essbase 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 local context handle. |
Declare Function EsbCreateLocalContext Lib "ESBAPIW" (ByVal hInst As Long, ByVal User As String, ByVal Password As String, hCtx As Long) As Long 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 SubEsbDeleteLocalContext()