ms-project

Hiding specific menu items

隐身守侯 提交于 2020-04-17 22:20:50
问题 I am trying to hide menu items where they contain the word 'Benefits HIDDEN' in a quick launch list. I have been trying to get a script to work, but no avail so far. Using F12 in Edge, the class I want to hide is as follows; <span class="menu-item-text">Benefits HIDDEN</span> Which sites under this DIV <div class=" noindex ms-core-listMenu-verticalBox" id="zz13_idPDPQuickLaunch"> I was trying this kind of approach; <script> $(document).ready(function() { $(".zz13_idPDPQuickLaunch *:contains(

How Do I Change The Project Owner Using REST API

本小妞迷上赌 提交于 2020-03-27 08:48:30
问题 I want to change the project owner of a project using REST API. I know there is a "/Owner" endpoint and I can get the owner without any problems with the following GET: site/_api/ProjectServer/Projects('2cc734f2-cd16-4f09-8632-a2bc74a32577')/Owner So how do I change the project owner using REST API? 回答1: The general way to change site owners using REST API according to MSDN is: POST http://<sitecollection>/<site>/_api/site/owner So in your case you should just have to change from a GET

How can I make a macro in Excel workbook tab to open MS Project and copy reference cells

前提是你 提交于 2020-03-25 16:56:16
问题 Situation : Our company has an Open Issues list we use for individual parts during trialing/launching a program. The program has its own Excel document, and each part has its own tab in that document for a running list of that specific part. It has recently been proposed that we track how long issues are open using MS Project. I can take the information from our Excel tab and manually copy it into Project to show what we want, and I can have Project automatically update linked sources if it

How can I make a macro in Excel workbook tab to open MS Project and copy reference cells

£可爱£侵袭症+ 提交于 2020-03-25 16:56:06
问题 Situation : Our company has an Open Issues list we use for individual parts during trialing/launching a program. The program has its own Excel document, and each part has its own tab in that document for a running list of that specific part. It has recently been proposed that we track how long issues are open using MS Project. I can take the information from our Excel tab and manually copy it into Project to show what we want, and I can have Project automatically update linked sources if it

Wix - Use WixVariables on .wixproj

丶灬走出姿态 提交于 2020-01-15 01:52:52
问题 i'm on Visual Studio 2012 and i use wix I wanted to use a WixVariables or a DefineConstants on Target After build (wixproj) when i unload the project i used on <DefineConstants>VersionNodeServer=0.0.1;</DefineConstants> Or <WixVariables>VersionNodeServer=0.0.1;</WixVariables> but when i used this variable 'VersionNodeServer' like that <Target Name="AfterBuild"> <WebDownload FileName="test.msm" FileUri="$(VersionNodeServer)"/> the build failed because FileUri is empty. i saw my variable on the

Is there VBA Code to see if Enterprise Project 2013 file is checked out before opening?

孤人 提交于 2020-01-14 08:05:28
问题 Trying to help our Project 2013 Users out with some VBA code, and we have come to a point where we can't seem to find an answer for finding if a Project 2013 file is checked out on our PWA server using VBA. They basically have a list of Projects set as tasks in a single Project file, and the VBA code loops through the list of tasks to run FileOpenEx, do some changes, and then closes it. However, the need is to be able to check to see if the Project File is checked out prior to running

Connect to a project server when opening MS Project

杀马特。学长 韩版系。学妹 提交于 2020-01-09 11:54:48
问题 I have a vbscript that checks to see if MS Project is open. If it's already open it runs a macro if not it should open Project then run the macro. It works fine if Project is already open. If project isn't open the script successfully opens and runs the macro but fails half way through. Basically it fails because the macro that is being called opens files from project server. even with my default account set to the Project server url and 'when starting' set to 'choose my default account' it

Connect to a project server when opening MS Project

梦想的初衷 提交于 2020-01-09 11:53:20
问题 I have a vbscript that checks to see if MS Project is open. If it's already open it runs a macro if not it should open Project then run the macro. It works fine if Project is already open. If project isn't open the script successfully opens and runs the macro but fails half way through. Basically it fails because the macro that is being called opens files from project server. even with my default account set to the Project server url and 'when starting' set to 'choose my default account' it

Connect to a project server when opening MS Project

生来就可爱ヽ(ⅴ<●) 提交于 2020-01-09 11:52:30
问题 I have a vbscript that checks to see if MS Project is open. If it's already open it runs a macro if not it should open Project then run the macro. It works fine if Project is already open. If project isn't open the script successfully opens and runs the macro but fails half way through. Basically it fails because the macro that is being called opens files from project server. even with my default account set to the Project server url and 'when starting' set to 'choose my default account' it

How do I listen for a Project Change event from an MS Project VSTO Add-in?

天大地大妈咪最大 提交于 2020-01-06 04:07:54
问题 My Add-in has an application event ProjectBeforeTaskChange that is available from the ThisAddIn class. What I need is a ProjectAfterTaskChange event, but that doesn't exist. Is there a way to listen for the Project Change event from an application level add-in? My end goal is to set three number fields when a specific text field changes. 回答1: ProjectBeforeTaskChange is the correct event to use to monitor field changes. The word "Before" refers to the fact that the handler can prevent the