I have a VBScript that gets called from a web server. It creates an MS Project project. In my development environment it works as designed. In production environment, when the script executes, I get ~20 dialog boxes that appear on the web server console that say:
The start of task [n] [task name] Task of "Project 1" is before the project starts.
As far as I can tell, all the config params are the same between my working Dev instance of MSProj and my production instance.
Does this ring any bells?
As a work around, I thought that I could merely set the Project Start Date to some early date in the VBscript but have also failed at getting that to take.
I've tried:
Set objProject = WScript.CreateObject("MsProject.Application")
objProject.FileNew()
objProject.ProjectSummaryInfo "Start", "1/1/2002"
...but I get an "argument value is not valid" error.
Any help would be appreciated
The start of task [n] [task name] Task of "Project 1" is before the project starts.
As far as I can tell, all the config params are the same between my working Dev instance of MSProj and my production instance.
Does this ring any bells?
As a work around, I thought that I could merely set the Project Start Date to some early date in the VBscript but have also failed at getting that to take.
I've tried:
Set objProject = WScript.CreateObject("MsProject.Application")
objProject.FileNew()
objProject.ProjectSummaryInfo "Start", "1/1/2002"
...but I get an "argument value is not valid" error.
Any help would be appreciated