|
|
|
|
|
SysNotificationSend (Function) In french: SysNotificationEnvoie Sends an interactive notification to the system in order to be displayed. // 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) Syntax
<Result> = SysNotificationSend(<Notification>)
<Result>: Boolean - True if the notification was sent,
- False otherwise.
<Notification>: sysNotification variable Name of the sysNotification variable that corresponds to the notification to be displayed by the system.
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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|