EsbGetAPIVersion() returns the current version of the Essbase API.
EsbGetAPIVersion (lVersion)
lVersion As Long
Version | Version number of API. Hex value, in Visual Basic notation, with the following format:
&H00000000
For Example, &H00040000 represents Release 4.0, and &H00030002 represents Release 3.2. |
Declare Function EsbGetAPIVersion Lib "ESBAPIW" (lVersion As Long) As LongSub ESB_GetAPIVersion() Dim sts As Long Dim Version As Long '*************** 'Get API Version '*************** sts = EsbGetAPIVersion(Version) End SubEsbGetObjectInfo()