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 Explicit
Private Sub Project_Activate(ByVal pj As Project)
MsgBox pj.Name & " Activate Event"
End Sub
Private Sub Project_BeforeClose(ByVal pj As Project)
MsgBox pj.Name & " BeforeClose Event"
End Sub
Private Sub Project_BeforeSave(ByVal pj As Project)
MsgBox pj.Name & " BeforeSave Event"
End Sub
Private Sub Project_Open(ByVal pj As Project)
MsgBox pj.Name & " Open Event"
End Sub
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?
is pushed out to all associates on Project Server. That conceptually
works, except on the following events:
Option Explicit
Private Sub Project_Activate(ByVal pj As Project)
MsgBox pj.Name & " Activate Event"
End Sub
Private Sub Project_BeforeClose(ByVal pj As Project)
MsgBox pj.Name & " BeforeClose Event"
End Sub
Private Sub Project_BeforeSave(ByVal pj As Project)
MsgBox pj.Name & " BeforeSave Event"
End Sub
Private Sub Project_Open(ByVal pj As Project)
MsgBox pj.Name & " Open Event"
End Sub
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?