Jump to content

windows 10 notificationcenter and unigui


AntonioCuomo

Recommended Posts

2 hours ago, AntonioCuomo said:

Is it possible to put a message in windows 10 notifications in order to view the message even after closing the webbrowser? Like Tnofiticationcenter VCL delphi. In practice, when the customer performs an action, I would like that after a certain time he should see a message.

Yes, it is possible.

I have made in unigui StandAlone application.

UniGUIServerModuleCreate

  MyTrayIcon := TTrayIcon.Create (uniServerModule);
  MyTrayIcon.Name := 'MyTrayIcon';
  MyTrayIcon.Visible := True;
  MyTrayIcon.BalloonTitle := Title;
  MyTrayIcon.BalloonHint := 'Your message to user';
  MyTrayIcon.ShowBalloonHint;
  MyTrayIcon.Visible := False;

 

  • Like 1
Link to comment
Share on other sites

13 minutes ago, AntonioCuomo said:

Perfect thanks. My problem is to let the notification come out after a certain time and not to have it deleted directly from windows.

I understand this, but in my case I do not have a Notification Center, and I have made my own procedure for informing users.

Both on the client side and on the server side with timers.

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...