K
Kenneth
Is it possible from .NET application to load a .mpp-file at get the Title of
a certain column?
Here's how I'd like it to work:
ApplicationClass projectApp = new ApplicationClass();
projectApp.AppMaximize();
projectApp.FileOpen(@"MyFile.mpp", ... other variables here... );
Project project = projectApp.ActiveProject;
string title = project.GetFieldTitle(PjField.pjTaskText20); // <--
this line won't work
What I'd like to get is the text "City" if that's what a user has changed
the title of the column with Field name Text20...
Regards,
Kenneth
a certain column?
Here's how I'd like it to work:
ApplicationClass projectApp = new ApplicationClass();
projectApp.AppMaximize();
projectApp.FileOpen(@"MyFile.mpp", ... other variables here... );
Project project = projectApp.ActiveProject;
string title = project.GetFieldTitle(PjField.pjTaskText20); // <--
this line won't work
What I'd like to get is the text "City" if that's what a user has changed
the title of the column with Field name Text20...
Regards,
Kenneth