EsbSetPath

Description

EsbSetPath() sets the ARBORPATH environment variable for the current process.

Syntax

EsbSetPath (Path)

ByVal Path As String

Parameters

PathString describing the ARBORPATH environment variable

Return Value

Notes

Example

Sub ESB_SetPath
   Dim sts  As Long
   Dim Path As String
   
   Path = "C:\Essbase"
   sts  = EsbSetPath(Path)
End Sub