I have a Delphi 2006 app that can minimize to a tray icon, and displays various alert messages via a balloon hint over the tray icon.

Under some circumstances - I don't know when - a previously displayed balloon hint keeps popping up and won't go away. It displays for the length of time programmed, closes, then immediately reappears.

It is always a balloon hint from this app.

If the app displays another balloon hint, that one shows for the programmed time, then the phantom hint resumes.

It is as if the hint is stuck in a queue somewhere and doesn't get removed. In absence of anyone with some inspiration (I realise it's a long shot...), does anyone know how to purge the balloon hints?

link|improve this question

check if you have a timer that calls the tray icon to display the balloon or better yet search the entire project for the name of the tray icon component and see where do you call the procedure that shows the balloon. – Dorin Duminica Nov 16 '10 at 8:41
@Dorin. Thanks, done that. The code that assigns to the BalloonHint property of the TTrayIcon is definitely not being called again. – rossmcm Nov 16 '10 at 9:22
are you testing this on Windows XP? I seem to remember there was a bug with the balloons provided by MS on that OS. Anyway, check the accepted answer at stackoverflow.com/questions/902642/…. I think that might help you. – Guillem Vicens Feb 27 '11 at 6:49
Is it your own apps ? If yes could you post the code to check it. Simply relying on your explanation without seeing the source code it is very difficult to give an answer. – HpTerm Jan 24 at 18:11
1  
Did you ever resolve this? If so you should put your solution as an answer. – Kenneth Cochran Mar 27 at 15:18
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.