i try to hide the form in c# on startup…
what i want is a Taskbar Tooltip Programm, like this:

But i try different things but i cannot hide the form!
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
this.Visible = false;
}
private void notifyIcon1_MouseDoubleCLick(object sender, MouseEventArgs e)
{
notifyIcon1.ShowBalloonTip(500, "Title", "Tip text", ToolTipIcon.Info);
}
}
I hope someone can help me 🙂
Take a look at this: http://www.vbforums.com/showthread.php?t=637483 instead of doing what you’re doing.
Also, the problem is that when the form loads it’s not visible yet. Handle the
Shownevent instead of theLoadevent.