how can I get the "Total editing time" ?

S

smallPotato

Hi all,

Does any vba function can be used to get the "Total editing time" in the
properties dialog? and does anybody know why this value return to zero when
the project is re-opened? is that a bug?

Many thanks,
smallPotato.
 
R

Rod Gill

Try:

activeproject.BuiltinDocumentProperties("Total editing time")

This value holds the time for the current session. You could have a before
close event and add the value to a stored total edit in
ActiveProject.ProjectSummaryTask.Number1 if you wanted to.
 
S

smallPotato

thanks Rod~

Rod Gill said:
Try:

activeproject.BuiltinDocumentProperties("Total editing time")

This value holds the time for the current session. You could have a before
close event and add the value to a stored total edit in
ActiveProject.ProjectSummaryTask.Number1 if you wanted to.

--

Rod Gill
Project MVP
Visit www.msproject-systems.com for Project Companion Tools and more
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top