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
 
Top