public void Form1_Load(object sender, EventArgs e, FormClosingEventArgs f)
{
f.Cancel = true;
base.OnClosing(f);
}
i get the error 'Error 1 No overload for 'Form1_Load' matches delegate 'System.EventHandler'
So what could the problem be ?
Do i need to add something to 'this.Load += new System.EventHandler(this.Form1_Load);' ? or what?

Thank you in advance!!
