cancel
Showing results for 
Search instead for 
Did you mean: 

Terminating Add-on Windows Process

Former Member
0 Kudos

Hi,

I have developed an add-on which loads and works just fine, however when I stop the Add-on in SAP and/or shut down SAP B1, the Add-on exe process remains running in task-manager.

How do I ensure that the process terminates when I stop it or shutdown SAP ?

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi,

Use Application event as shown below and follow the code given so that the addon process gets killed after stopping the addon or shutting down SAP B1

Private Sub SBO_Application_AppEvent(ByVal EventType As SAPbouiCOM.BoAppEventTypes) Handles SBO_Application.AppEvent

If EventType = SAPbouiCOM.BoAppEventTypes.aet_CompanyChanged Or EventType = SAPbouiCOM.BoAppEventTypes.aet_ShutDown Then

System.Windows.Forms.Application.Exit()

End If

End Sub

regards,

varma

Answers (0)