At 10:21 AM -0800 2/1/2002, Gary Dennis wrote: >I want to construct a script statement dynamically (something like the >following) and then "EXECUTE" that statement. If you are familiar with >REXX, this language has an INTERPRET command that permits this sort of >thing. Is there a way to do this in REV?
Yes: the "do" command. > put "put" && quote & widget & quote && "into" && zVarName into execvar > -- the constructed statement at this point should be: > -- PUT "April" into aVariableName > > ******* This is where I fall off the table Here you'd have do execvar You can even build the string in the command line if you prefer: do "put" && quote & widget & quote && "into" && zVarName -- Jeanne A. E. DeVoto ~ [EMAIL PROTECTED] http://www.runrev.com/ Runtime Revolution Limited - Power to the Developer! _______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
