after deleting an event handler method, the code attaching the event to
the object is still there & will cause an error
must delete line of code that adds event handler to object
in Form1.Designer.cs
code will look similar to this:
this.button4.Click += new System.EventHandler(this.button4_Click);
DELETE!