|
|
Thread Tools | Rate Thread | Display Modes |
#1
|
|||
|
|||
How do I programmatically set ‘parameter macros’ for a 'Subroutine Call'?
I am programmatically generating build steps using VBScript and the VBP object model. Although the object model is typically easy to program, I am having some problems setting up ‘parameter macros’ for a 'Subroutine Call'.
Could you possibly provide an example of how this is done? Thanks. |
#2
|
|||
|
|||
objStep.Property("Parameters") = Array("PARM1", "PARM2")
objStep.Property("ParamValues") = Array("VAL1", "VAL2") |
|
|