Hi,
I'm trying to export a MSProject to excel with specific view.
Works fine to PDF, but I don't know how do it to export to excel, alwais appears the assistant of save as.
Application appclass = new Application();
appclass.FileOpenEx("test.mpp");
appclass.Visible = true;
Project project = appclass.ActiveProject;
appclass.ViewApplyEx("Specific View");
appclass.DocumentExport("test.pdf", PjDocExportType.pjPDF); //OK
appclass.FileSaveAs("test.xlsx", PjFileFormat.pjXLSX); //Open save file assistant and export all tasks
appclass.FileCloseEx(PjSaveType.pjDoNotSave, System.Reflection.Missing.Value, System.Reflection.Missing.Value);
Thanks and regards