cancel
Showing results for 
Search instead for 
Did you mean: 

Stopping Addon instances

Former Member
0 Kudos

Hallo everyone is there an easier way of stopping an instance of an addon after stopping it from the AddOn manager..?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

hello

you can use the following code

Public Sub SBO_Application_AppEvent(ByVal EventType As SAPbouiCOM.BoAppEventTypes) Handles SBO_Application.AppEvent
        '
        ''On Error Resume Next
        '
        Select Case EventType
            '
            Case SAPbouiCOM.BoAppEventTypes.aet_LanguageChanged
                '
            Case Else ' every another message
                end 'the addon is stopped
                '
        End Select
        '
    End Sub

This usually works.

regards

János

Former Member
0 Kudos

Thanks let me try it and i will get back to you.

Former Member
0 Kudos

Hallo Janos if i use this method wont there be a click event error since the connection will be lost midway?