PARMS2 keyword

For situations when the data that must go into the PARMS( ) keyword on a method call does not fit in a single variable, the PARMS2( ) keyword is used to address this problem.

PARMS2( ) has the same format as the PARMS( ) keyword, and the PARMS2( ) values are concatenated to the contents of the PARMS( ) keyword.

If a method's parameters require two variables to store, specify them this way:

V(Parms1Var) V(Parms2Var)

Here the value of the variables Parms1Var would be PARMS(somevalue), and the value of the variable Parms2Var would be PARMS2(anothervalue). WinStudio would build a method parm string of "somevalue anothervalue", etc.