Application cannot find my ico file.
Where should I add picture ?
I get an unhandled exception of type 'System.IO.FileNotFoundException'
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.notifyIcon1.Icon = new Icon("mmm.ico");
this.ShowInTaskbar = true;
}
}
}