ProjectBeforeTaskChange

R

Robert X

Hello,

I'm trying to use the ProjectBeforeTaskChange event: when the
pjTaskDuration1 field is changed by the user, I need to change the value of
pjTaskDuration2. But when this second change happens, the
ProjectBeforeTaskChange event is fired a second time.
 
A

Abhijit

Hi,

This is expected behavior whether you change data from UI or VBA etc, the
notification is fired. The way you can work around the same is, when you
enter the event handler, do not answer messages till you get out of the same.
This has some issues like, what if some other parameter changes during this
NO LISTEN mode.
 
Top