How would you extract data from a MS Project .mpp file? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T03:18:03Z http://stackoverflow.com/feeds/question/38769 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/38769/how-would-you-extract-data-from-a-ms-project-mpp-file 1 How would you extract data from a MS Project .mpp file? Mark Nold 2008-09-02T03:29:57Z 2009-01-27T08:48:12Z <p>I need to extract data from a .mpp file on the network and combine it with other data from several different databases. The application can be written in Perl, VB6, VB.net or C# but must be easily scheduled from a Windows based server.</p> <p>What would you recommend to extract the MS Project data with no user intervention? </p> <p>Is there any ODBC drivers available for MS Project? </p> <p>Are there any modules (for Perl, VB, VB.net or C#) for opening a .mpp and reading activity data?</p> http://stackoverflow.com/questions/38769/how-would-you-extract-data-from-a-ms-project-mpp-file/38787#38787 2 Answer by Vaibhav for How would you extract data from a MS Project .mpp file? Vaibhav 2008-09-02T03:58:41Z 2008-09-02T03:58:41Z <p>MPP does have its own object model that can be used to access data in it. The info should be available here: <a href="http://msdn.microsoft.com/en-us/office/aa905469.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/office/aa905469.aspx</a></p> http://stackoverflow.com/questions/38769/how-would-you-extract-data-from-a-ms-project-mpp-file/208639#208639 2 Answer by Jon Iles for How would you extract data from a MS Project .mpp file? Jon Iles 2008-10-16T13:49:23Z 2009-01-27T08:48:12Z <p>I would recommend using MPXJ (<a href="http://mpxj.sf.net" rel="nofollow">mpxj.sf.net</a>) to extract data from Microsoft Project files. Don't be put off by the fact that it was originally a Java library - the current release of MPXJ includes native .net dlls as well as the original Java JAR file, thanks to the magic of IKVM.</p> <p>Disclaimer: I maintain MPXJ.</p> http://stackoverflow.com/questions/38769/how-would-you-extract-data-from-a-ms-project-mpp-file/277232#277232 1 Answer by Michael for How would you extract data from a MS Project .mpp file? Michael 2008-11-10T06:48:08Z 2008-11-10T06:48:08Z <p>I have the same need. Here is what I found so far. There is an OLEDB provider for microsoft projects, up to version MP 2007. If Google it, there are enough sites quoting the connection string, but here is the one quote: oConn.Open "Provider=Microsoft.Project.OLEDB.9.0;" &amp; _ "Project Name=c:\somepath\myProject.mpp"</p> <p>The problem with this approach seems to be that you have to install MS Project on the server. It is nuisance in any case, and an impossibility for me using hosting environtment.</p> <p>So you are down to parsing .mpp. MPXJ is an excellent library as one commenter above suggests, and I can afford to wait, so I am waiting for them to release .NET version. If you are resolved to get it done, get the code and see what they are doing. Other then in their source code/comments there is no (to my knowledge) documentation of the format.</p> http://stackoverflow.com/questions/38769/how-would-you-extract-data-from-a-ms-project-mpp-file/289990#289990 0 Answer by Jay for How would you extract data from a MS Project .mpp file? Jay 2008-11-14T12:54:27Z 2008-11-14T12:54:27Z <p>Can somebody please post a sample in C# so that I can start at least?... I am trying to make a MPP viewer in C# </p> <pre><code> ProjectReader objReader = ProjectReaderUtility.getProjectReader(@"C:\BVContentMigrationRev2.mpp"); ProjectFile objProject = objReader.read(@"C:\BVContentMigrationRev2.mpp"); List&lt;Task&gt; tasks = (List&lt;Task&gt;)objProject.getAllTasks(); </code></pre> <p>I did this an am stuck.... Jon Iles, Sir I think you can help...</p> <p>Thanks!</p> http://stackoverflow.com/questions/38769/how-would-you-extract-data-from-a-ms-project-mpp-file/434578#434578 1 Answer by Anuj for How would you extract data from a MS Project .mpp file? Anuj 2009-01-12T06:04:07Z 2009-01-12T06:04:07Z <p>Hi,</p> <p>Hope the following helps...</p> <p><a href="http://www.codeproject.com/KB/cs/PrjXlsRpt.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/PrjXlsRpt.aspx</a></p> <p>Rgds</p>