Sometimes, when you develop windows forms applications, you use a notify icon and when you kill it, it remains into the system tray. How you can hide it immediately? The common solution is to hide the notify icon before to close / dispose the application. It exists a discussion about it on a MS Forum.

if (sTray != null)
  sTray.Visible = false;