EsbSetPath

実行時プロセスのためのESSBASEPATH環境変数を設定します。

構文

            EsbSetPath
             (
            Path
            )
ByVal 
            Path
             As String
         
パラメータ説明

Path

ESSBASEPATH環境変数を示す文字列

備考

戻り値

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