How to View MPX File Using C#
In order to view MPX file, we’ll use
API which is a feature-rich, powerful and easy to use API for C# platform to be used with any Viewer. Open
package manager, search for Aspose.Tasks and install. You may also use the following command from the Package Manager Console.
Package Manager Console Command
PM> Install-Package Aspose.Tasks
Steps to View MPX via C#
Aspose.Tasks makes it easy for the developers to view the MPX file with just few lines of code.
- Load MPX file with Project class
- Call the Project.Save method with HtmlSaveOptions as parameters
- Load resultant HTML in default browser with Process.Start
System Requirements
Aspose.Tasks for .NET is supported on all major operating systems. Just make sure that you have the following prerequisites.
- Microsoft Windows or a compatible OS with .NET Framework, Mono and COM Interop
- Development environment like Microsoft Visual Studio
- Aspose.Tasks for .NET referenced in your project
C# code to view MPX
// load MPX file in an instance of Project
var project = new Tasks.Project("template.mpx");
// create an instance of HtmlSaveOptions
var option = new Tasks.Saving.HtmlSaveOptions();
// convert MPX file to HTML format
project.Save(output, option);
// load resultant HTML in default browser
System.Diagnostics.Process.Start(output);
About Aspose.Tasks for .NET API
Aspose.Tasks is a Microsoft Project API to view and convert project documents. One can load, create, modify and render Microsoft Project files to Primavera, Excel, PDF, HTML, images and XML formats. Aspose.Tasks is a standalone API and does not require Microsoft Project or any other software to be installed.Free App to View MPX
MPX Mi a MPX fájlformátum
MPX, Microsoft Exchange File Format, is an ASCII file format for transferring of project information between Microsoft Project (MSP) and other applications that support the MPX file format such as Primavera Project Planner, Sciforma and Timerline Precision Estimating. The MPX file format allows you to transfer project information that cannot appear in a table, such as detailed resource assignment information, calendar information, or information in the Project Info dialog box.