I got an issue with toolips artifacts. In the application main form there is an toolstrip button with a tooltip text enabled. The click event handler of that buttons hides the main form an starts an other process:
this.Hide();
application.Start();
application.WaitForExit();
this.Show();
If I press the button during the tooltip text is shown, the text remains as an artifact on the desktop. How can I avoid this behaivor.
Thanks Andy