I need the following while loop to repeat until the balloontip is clicked. How can I do this?
while(/*Here, I want the loop to end when the Norm.BalloonTipClicked occurs*/)
{
Norm.ShowBalloonTip(10000);
System.Threading.Thread.Sleep(10000);
`enter code here`
System.Threading.Thread.Sleep(60000);
}
(As you probably realize, 'Norm' refers to the name of the notification icon)
Using flags, as suggested by Simon Whitehead, I have been able to solve the problem. By using the below code, everything now works!
Thanks to Simon Whitehead for all of his help! It is much appreciated.