Refreshing windows systray
-
Hello all I'm programmatically adding and removing icons to windows systray. Icons showup correctly when I'm adding it programmatically but when I remove it programmitically the icon still shows up until I put the mouse pointer there. Is there any way to refresh the system tray so that the icons showup properly. many thanks for your help. Hari.
-
Hello all I'm programmatically adding and removing icons to windows systray. Icons showup correctly when I'm adding it programmatically but when I remove it programmitically the icon still shows up until I put the mouse pointer there. Is there any way to refresh the system tray so that the icons showup properly. many thanks for your help. Hari.
-
Hello, How are you removing the window - I have seen this problem before if you miss: Shell_NotifyIcon(NIM_DELETE, IconNotificationData); Without the above the notification gets sent when you put the mouse over the icon - making it vanish. Regards, Simon
Hi Simon Thank you very much for reply.