V
Valery
HI,
I'm trying to get the TFS connexion properties in MSProject. My goal is to
avoid user to connect with the team menu and to ask same parameters to
realize the functionnalities in my AddIn.
My functionnalities need a connexion on a server to access workitems
contained in the MSProject project.
I searched in CustomDocumentProperties but didn't find anything about TFS
connexion parameters (server, project, user, domain, password)
My code is down:
Office.DocumentProperties properties =
(Office.DocumentProperties)Application.ActiveProject.CustomDocumentProperties;
for (int i = 1; i <= properties.Count; i++)
{
System.Diagnostics.Debug.Print(
properties.Name);
}
Thanks,
Valery
I'm trying to get the TFS connexion properties in MSProject. My goal is to
avoid user to connect with the team menu and to ask same parameters to
realize the functionnalities in my AddIn.
My functionnalities need a connexion on a server to access workitems
contained in the MSProject project.
I searched in CustomDocumentProperties but didn't find anything about TFS
connexion parameters (server, project, user, domain, password)
My code is down:
Office.DocumentProperties properties =
(Office.DocumentProperties)Application.ActiveProject.CustomDocumentProperties;
for (int i = 1; i <= properties.Count; i++)
{
System.Diagnostics.Debug.Print(
properties.Name);
}
Thanks,
Valery