|
|
|
|
SysNotificationRemove (Function) In french: SysNotificationSupprime Removes a previously sent interactive notification. // Create an update notification notifUPD is sysNotification notifUPD.Title = "Update available!" notifUPD.Text1 = "Download now to get the latest features." notifUPD.Buttons[1].Caption = "Download!" notifUPD.Buttons[1].Note = "UPD_download_button" notifUPD.Buttons[2].Caption = "Later..." notifUPD.Buttons[2].Type = sysNotifReminderButton // Send notification SysNotificationSend(notifUPD) // Multiple actions related to the notification ... // It is no longer necessary to display the notification, it can be removed SysNotificationRemove(notifUPD) Syntax
<Result> = SysNotificationRemove(<Notification>)
<Result>: Boolean - True if the notification was sent,
- False otherwise.
<Notification>: sysNotification variable Name of the sysNotification variable to remove. Remarks When removed, the notification disappears from the screen and is removed from the Windows Action Center.
Related Examples:
|
Training (WINDEV): WD Windows Notification Management
[ + ] Starting with Windows 10, "toast" notifications (on the right side of the Desktop) are interactive, and enable you to include buttons, input areas and combo boxes. This example shows how to use this type of notifications.
|
Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|