ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Windows functions / System notification functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Removes a previously sent interactive notification.
Example
// 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:
WD Windows Notification Management 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
Minimum version required
  • Version 27
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/22/2023

Send a report | Local help