B
Brad
I want to add VBA macro code to the Enterprise Global so that the code is pushed out to all associates on Project Server. That conceptually works, except on the following events
Option Explici
Private Sub Project_Activate(ByVal pj As Project
MsgBox pj.Name & " Activate Event
End Su
Private Sub Project_BeforeClose(ByVal pj As Project
MsgBox pj.Name & " BeforeClose Event
End Su
Private Sub Project_BeforeSave(ByVal pj As Project
MsgBox pj.Name & " BeforeSave Event
End Su
Private Sub Project_Open(ByVal pj As Project
MsgBox pj.Name & " Open Event
End Su
I have tried placing this code in both the Microsoft Project Object (ThisProject) and as a Module. Does anyone know how to make this code work?
Option Explici
Private Sub Project_Activate(ByVal pj As Project
MsgBox pj.Name & " Activate Event
End Su
Private Sub Project_BeforeClose(ByVal pj As Project
MsgBox pj.Name & " BeforeClose Event
End Su
Private Sub Project_BeforeSave(ByVal pj As Project
MsgBox pj.Name & " BeforeSave Event
End Su
Private Sub Project_Open(ByVal pj As Project
MsgBox pj.Name & " Open Event
End Su
I have tried placing this code in both the Microsoft Project Object (ThisProject) and as a Module. Does anyone know how to make this code work?