A Generic Library For Accessing and Creating Microsoft Project Plan File

Introduction

In a project, if you need to extract data from Excel then you have many options irrespective of technology. But if you have a requirement to retrieve data from a Microsoft Project Plan (MPP) file, you have a limited number of options.

First, you can use the Microsoft Project Exchange (MPXJ) open source library to retrieve data from a MPP file. But the problem is that it is coded in Java and the .Net version just embeds a virtual Java processor and then calls the Java-native version. It involves performance overhead.

Secondly, you can use the Interop library provided in .Net. Using this library, you can access a MPP file but is very complex and low-level. Programming directly against Interop has been an issue with developers.

We came up with a generalized library keeping in mind the structure and fields of a MPP file. It provides you a direct mapping with builtin fields of a MPP file in an exact manner. For example, tasks in a project may have subtasks, but when you directly read it using Interop even subtasks will be considered as separate tasks. Then the essence of a MPP file gets lost and rather it looks like an Excel file.



                              Fig 1.0 Structure of MILE

We have kept intact the extensibility of Interop library and allowed the user to access and create a MPP file in a generalized manner keeping the essence of a project file intact.


                               Fig 1.1 Class Specifications

Extensions

  • Disconnected architecture
  • LINQ extensibility
  • Generate MPP file in a generalized manner
  • Accessing data from project file in its essence
  • Refinement- Child tasks
  • Secure for web application

Prerequisites

Microsoft Project should be installed in your machine.

In order to use this library you can use the following procedure.

  1. Add a reference of the provided DLL.
  2. Import Abhi.MILE.
  3. Create a List object of type MppTask and a reference variable of type MPPProject.

    // Creating a List variable of type MppTask
    List<MppTask> lsMppTasks;
    // Creating a reference variable of type MPPProject
    MPPProject project;

  4. Declare a string variable "path" to store the location of MPP file and store the path in it.

    // Creating a string variable to store the path of Mpp file
    String path;
    path=”Your path here”;

  5. After storing the path, just instantiate an object of MPPProject Class as per the class definition.

    // Creating an object of type MPPProject
    project = new MPPProject(path);

  6. Retrieve all tasks present in the mpp file through the object created in the last step. Invoke the GetAllTasks method and store all tasks present in a list variable created in Step 3.

    // Invoking GetAllTasks() Method to retrieve all tasks present in MPP file
    lsMppTasks = project.GetAllTasks();

  7. Now you have a project object that contains all tasks, subtasks and resources present in the Mpp file. Using a List variable we can access subtasks and all other fields or properties of a specific task as shown below:

    // Retrieving Name of first task
    Firsttask.text=lsMpptasks[0].Name;
    // Retrieving the name of First child of first task
    FirstChildOfFirstTask.text= lsMpptasks[0].ChildTasks[0].Name;
    // Retrieving the start date of First child of first task

    ChildTaskStartDate.Text = lsMpptasks [0].ChildTasks[0].StartDate.ToString();
    // Retrieving the name of second child of first task
    SecondChildOfFirstTask.Text = lsMpptasks [0].ChildTasks[1].Name;

     

    Now the lsMppTask object can be used to access the entire information present in the MPP file using methods as shown in the Class specification. In this way, the library can be used for accessing all information present in a MPP file.

  8. Similarly we can create a MPP File by creating a list of MppTasks and pass them into the CreateMppFile method of the MppProject class.

    // Creating a List variable of type MppTask to store task information
    List<MppTask> lsMppTasks;
    //Creating a MppTask object and initializing some properties
    MppTask task1=new MppTask();
    task1.Name=”Task1”;
    task1.StartDate=”30/09/2012”;
    task1.FinishDate=”10/11/2012”;
    //Creating another MppTask object and initializing some properties
    task2.StartDate=”12/09/2012”;
    task2.FinishDate=”01/11/2012”;
    //Adding both Mpptask objects to List object
    lsMppTasks.Add(task1);
    lsMppTasks.Add(task2);
    /*Invoking CreateMppFile Method of project class to create a Mpp file with all information present in List object */
    project .CreateMppFile(lsMppTasks,”D:/My_MppFile.mpp”);

For all remaining properties and methods, kindly refer to the class specification given before.

Reference(s)

http://msdn.microsoft.com
http://www.codeproject.com

Up Next
    Ebook Download
    View all

    milton

    Read by 0 people
    Download Now!
    Learn
    View all