4.11.111

Navigation:  4.11 >

4.11.111

Previous pageReturn to chapter overviewNext page

New:  PMP Service Domain Settings

In PMP Service Test/Setup application is available new Tools\Domain settings function to setup Domain settings in case custom settings are needed to access Active directory.

clip0084

clip0085

Saving of Domain settings updates PMP_Settings template with Domain settings, Template version is changed to 2.

clip0086

New: ProMo+ Domain Settings

clip0087

The Domain Setttings are stored into Template by Administration\Publish new templates function in ProMo+.

New: CustomLibrary GetProjectDocuments function to attach files and directories to current project

Customize_Excel_Editor.dll can be optionally extended with GetProjectDocuments function to attach files and directories during saving of current project.

 

Public Class Customize_Excel_Editor

    Implements IExcelEditorIExcelEditor2

    

    Public Function GetProjectDocuments(projectNumber As StringAs List(Of ProjectDocumentImplements IExcelEditor2.GetProjectDocuments

        Dim projectDocuments As New List(Of ProjectDocument)

 

        'add file to current project

        projectDocuments.Add(New ProjectDocument("c:\temp\PMAddFileTest1.xlsx"False))

        'add file link to current project

        projectDocuments.Add(New ProjectDocument("c:\temp\PMAddFileTest2.xlsx"True))

        'add directory to current project

        projectDocuments.Add(New ProjectDocument("c:\temp\"))

 

        Return projectDocuments

    End Function