I am developing an addin for MS Project 2010 in Visual Studio 2010 C#. The event ProjectBeforeTaskChange does not occur when I clear the content of a task field in MS Project by using “Delete” button. When the “Delete” button is pressed the editclear method is called and there is no event for this action in Visual Studio. I thought that probably I can make an event handler when editclear is called. Do you know how can I do this ? or is there any other solution ?
Any suggestions are appreciated.
In order to solve this issue, I have implemented the SelectionChange event in which I am checking if the value of a field has been changed.