05-16-2008, 05:08 PM
There is no way to simply pass multiple variables to an exe.
Exe1 can format command line with multiple variables (format()), and let exe2 parse it (tok()).
Or use a variable of an user-defined type. Let exe1 convert it to string (setstruct()), and let exe2 convert the string to variable (getstruct()).
Or exe1 can write the variables to the registry (rset()), and let exe2 get them from there (rget()). This probably is the simplest.
Exe1 can format command line with multiple variables (format()), and let exe2 parse it (tok()).
Or use a variable of an user-defined type. Let exe1 convert it to string (setstruct()), and let exe2 convert the string to variable (getstruct()).
Or exe1 can write the variables to the registry (rset()), and let exe2 get them from there (rget()). This probably is the simplest.