|
|
|
|
|
- Overview
- Implementation and programming
- Implementation
- Programming
Discovering AAFs (Automatic Application Features)
Applications created with WINDEV offer users many automatic features on the different windows or controls in the application. Many features can be accessed simply with a right click on the window or control in the application. To help your users discover these features, a specific toast appears once a month if no AAF has been used.
Implementation and programming Implementation The AAF reminder toast is implemented automatically. It is displayed under the following conditions: - Having a window with controls that propose AAFs.
- Not having used AAFs in that window for one month.
Programming You can force the toast or disable it programmatically. To force the display of the toast, use AAFExecute with the aafDiscoverAAF constant. Example: AAFExecute(MyWindow, aafDiscoverAAF)
To disable the toast, use AAFDisable with the aafDiscoverAAF constant. Example: AAFDisable(aafDiscoverAAF)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|