get & set value to Enterprise Project Text15

D

docchang

Currently Enterprise Project Text15 contains a list
row1: red
row2: green
row3: yellow

What is the VBA code to set Enterprise Project Text15 to it
row2:green?
What is the VBA code to get the value from Enterprise Project Text15?

Thanks
 
R

Rod Gill

This news group is closing down soon, so please use the project.developer
group in future.

Does ActiveProject.Tasks(1).EnterpriseText15="Green"

work for you? To display contents:

msgbox "Enterprise Task Text 15 is: "&
ActiveProject.Tasks(1).EnterpriseText15

--

Rod Gill
Project MVP

NEW!! Project VBA Book, for details visit: http://www.projectvbabook.com
 
Top