P
PhxProjectUser
My original question was: I need to disburse a custom toolbar to my project
team. I know that my team members have to move it to *their* Global.mpt file.
Is there a simple macro anyone has that I can send to my team to run?
I rec'd the following answer:
enter the following code into the ThisProject module of
the distributing file:
Private Sub Project_Open(ByVal pj As Project)
On error resume next
OrganizerDeleteItem Type:=pjToolbars, FileName:="GLOBAL.mpt", Name:="What A
Bar"
OrganizerMoveItem Type:=pjToolbars, FileName:=activeproject.FullName,
Name:="What A Bar", tofilename:="GLOBAL.mpt"
end sub
MY NEW QUESTION IS:
My file is a read-only. Will this still work? Also, you mention
entering the following code into the ThisProject module of the distributing
file. Please provide more information on how to do this.
team. I know that my team members have to move it to *their* Global.mpt file.
Is there a simple macro anyone has that I can send to my team to run?
I rec'd the following answer:
enter the following code into the ThisProject module of
the distributing file:
Private Sub Project_Open(ByVal pj As Project)
On error resume next
OrganizerDeleteItem Type:=pjToolbars, FileName:="GLOBAL.mpt", Name:="What A
Bar"
OrganizerMoveItem Type:=pjToolbars, FileName:=activeproject.FullName,
Name:="What A Bar", tofilename:="GLOBAL.mpt"
end sub
MY NEW QUESTION IS:
My file is a read-only. Will this still work? Also, you mention
entering the following code into the ThisProject module of the distributing
file. Please provide more information on how to do this.