View Single Post
  #1  
Old 10-09-2008, 10:38 AM
kinook kinook is online now
Administrator
 
Join Date: 03-06-2001
Location: Colorado
Posts: 6,003
How to pass values back from a chained project?

1) Global macros: Any changes to VBP global macros (add, modify, or delete) in the chained (child) project will also apply to the master (parent) project instance. Global macros can be modified via a Set Macro action or in a Run Script action.

2) INI file: Use a Write INI action in the chained build to write values to an INI file, then use the Read INI action to read the value in the master build project.

3) XML file: Use a Write XML action in the chained build to write the value to an INI file, then use the Read XML action to read the value in the master build project.

4) Registry: Use a Write Registry action in the chained build to write the value to the registry, then use the Read Registry action to read the value in the master build project.
Reply With Quote