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
 

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