ioan 45 Posted December 23, 2020 I'm using TTrayIcon to show notifications and I would like to change the notification title(?) from exe's name to my custom string (circled in the attached picture). Is it possible? This is my code to show the notification: procedure TfrmQueue.ShowMyNotification(ATitle, ABody: string); begin TrayIcon.BalloonTimeout := 3000; TrayIcon.BalloonTitle := ATitle; TrayIcon.BalloonHint := ABody; TrayIcon.ShowBalloonHint; end; Share this post Link to post
Guest Posted December 24, 2020 (edited) my fault... Edited December 24, 2020 by Guest Share this post Link to post
Lars Fosdal 1792 Posted December 27, 2020 @ioan - Do you have a more descriptive name in the version resource? Share this post Link to post
ioan 45 Posted December 28, 2020 On 12/27/2020 at 5:16 AM, Lars Fosdal said: @ioan - Do you have a more descriptive name in the version resource? That did it. Thank you! Share this post Link to post