Ive been looking all over for a workaround for this but have found nothing besides "Just have them click the NotifyIcon".
Windows 2000 obviously does not support BalloonTip events but I need a way to detect when either the balloon tip is clicked or closed. So I was thinking if there was a way for my program to know if the balloonTip is currently displayed, then I can create a timer that checks if the balloonTip is no longer displayed. Maybe something like this:
timer_tick(object sender, EventArgs e)
{
if (!balloonTipDisplayed())
{
//balloon is closed, do somthing...
}
}
Does anyone know of a way to do this? Or maybe have a better workaround? Thanks for any help.