Occurs when one of the following changes takes place in the SAP Business One application:
- Application shutdown
- Company database was changed
- Interface language was changed
- UI server shutdown
Occurs when one of the following changes takes place in the SAP Business One application:
| Visual Basic |
|---|
Public Event AppEvent( _ ByVal EventType As BoAppEventTypes _ ) |
| Value | Description |
|---|---|
| aet_ShutDown | The SAP Business One application shuts down.
Catch this event to terminate your add-on when the application is closed. |
| aet_CompanyChanged | A new company database is selected.
Catch this event when you want to check what company was selected, especially in cases there your add-on is designed for a specific company. |
| aet_LanguageChanged | The user interface language is changed.
Catch this event to make sure the language of the add-on corresponds to the language of the application. After the user interface language is changed, actions made on the menu are deleted because the menu is reloaded from the resource file. We recommend refreshing menu actions every time this event occurs. |
| aet_FontChanged | The font of the user interface is changed. |
| Catching application events (Visual Basic) | ||
|---|---|---|
| ||