Extending Project Event Handling

W

WGHayes

Wanting to know if there is some way of controlling events in Project VBA
'other than' those currently exposed in the VBA code window (i.e.
ProjectBeforeSave, ProjectAfterSave etc..)

For example, I want to manage any changes mande to a resource (like
availability, calendars, cost rates etc..). There is a 'ProjectResourceNew'
event but what about change?

Main requirement is to prevent changes in particular circumstances and to do
this in real-time and not have to wait until the project is about to be
saved.
 
L

Lars Hammarberg

There is an application event:
projapp_ProjectBeforeResourceChange(ByVal res As Resource, ByVal Field As
PjField, ByVal NewVal As Variant, Cancel As Boolean)
in Project2002.

/Lars Hammarberg
www.camako.se
 
Top