Using C#, on a WinForm, to stop a form from closing, I simply have to put this line in the public Form1(): this.Closing += new System.ComponentModel.CancelEventHandler(this.Form1_Closing); and add this bit: public void Form1_Closing(object sender, System.ComponentModel.CancelEventArgs e) { ...
I am writing a .Net c# windows application where I need to open a new email in the Lotus Notes mail client. Any ideas on how this could be done



