EsbDeleteApplication() deletes an existing application, either on the client or the server. If the application is running on the server, then it is first stopped.
EsbDeleteApplication (hCtx, AppName)
ByVal hCtx As Long ByVal AppName As String
hCtx | Essbase VB API context handle. |
AppName | Name of application to delete. |
Declare Function EsbDeleteApplication Lib "ESBAPIW" (ByVal hCtx As Long, ByVal AppName As String) As Long Sub ESB_DeleteApplication () Dim sts As Long Dim AppName As String AppName = "Sample" '******************* ' Delete Application '******************* sts = EsbDeleteApplication (hCtx, AppName) End SubEsbDeleteDatabase()