So, the program displays a balloontip for the first time. If it is clicked, it disappears and the program continues. If it isn't clicked, the balloontip fades out, waits five minutes, then flickers on and off very quickly, freezing the program. Any reasons why?
for (; ; )
{
Norm.ShowBalloonTip(10000);
while (DateTime.Now.Subtract(start).Seconds < 10)
{
Application.DoEvents();
if (loopVariable)
for3 = true;
if (for3) goto label4;
}
while (DateTime.Now.Subtract(start).Minutes < 5)
{
Application.DoEvents();
}
}