0

I have a thread in my program that checks if there is anything new every minute and if it is it should show a notification from tray like Balloon hint with notification text. Ex.: 'You got a new message from Tom!'

I use TTrayIcon component

Please help, thanks :)

user1804119
  • 142
  • 3
  • 12

1 Answers1

5

To show a message in BaloonHint with TTrayIcon:

  TrayIcon1.Visible := True;
  TrayIcon1.BalloonHint := 'You got a new message from Tom!';
  TrayIcon1.ShowBalloonHint;
MGH
  • 1,189
  • 1
  • 10
  • 18