• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How can I save Baseline by using MPXJ

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I meet a problem with mpxj.
I want to save a serial of tasks as MS Project file by using mpxj, and save both start date and start plan date (refer to "baseline start" in MS Project) of a task, but it is failed to save that info in following code:

ProjectFile mpxFile = new ProjectFile();
Task newTask = mpxFile.addTask();
newTask.setStart(new Date());
newTask.setBaselineStart(new Date()); // here I think it is to save start plan date, but it dosen't work. why?
...
...

Dose any one know how to use mpxj to save that info?
Thanks!
[ May 21, 2008: Message edited by: Carley Wong ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic