T
TroyS
I'm new to this so i know i'm asking a straightforward question, but i would
appreciate the help...thx in advance
In a Class Module (named: ILGPMIEvent), i have:
Public WithEvents ILGApp As Application
Private Sub ILGApp_ProjectBeforeSave(ByVal pj As MSProject.Project, ByVal
SaveAsUi As Boolean, Cancel As Boolean)
Application.CalculateProject <-- The debug ends up here....What should
the syntax be ??
End Sub
Under ThisProject I have:
Dim X As New ILGPMIEvent
Private Sub Project_Open(ByVal pj As Project)
Set X.ILGApp = Application
End Sub
Not Sure what the right syntax is to perform an Application.CalculateProject
within the ProjectBeforeSave()....?
My goal was to make sure everything is calculated before Saving so that the
information in ProjectServer is correct. I have some formulas which count up
Tasks based on Conditions.
I'm doing this in the Enterprise Global..
thx
appreciate the help...thx in advance
In a Class Module (named: ILGPMIEvent), i have:
Public WithEvents ILGApp As Application
Private Sub ILGApp_ProjectBeforeSave(ByVal pj As MSProject.Project, ByVal
SaveAsUi As Boolean, Cancel As Boolean)
Application.CalculateProject <-- The debug ends up here....What should
the syntax be ??
End Sub
Under ThisProject I have:
Dim X As New ILGPMIEvent
Private Sub Project_Open(ByVal pj As Project)
Set X.ILGApp = Application
End Sub
Not Sure what the right syntax is to perform an Application.CalculateProject
within the ProjectBeforeSave()....?
My goal was to make sure everything is calculated before Saving so that the
information in ProjectServer is correct. I have some formulas which count up
Tasks based on Conditions.
I'm doing this in the Enterprise Global..
thx