I mean like:
SET VAR vlaunch = 'Launch HTTPGET.exe'
SET VAR vparameters = '-0 "Test.dat" -r -S "*SRA" 192.168.0.83:1000'
SET VAR vlaunch = (.vlaunch + '|' + .vparameters + '|W')
&vLaunch
also, the & you used in your Parameter string is not required as there are
no spaces around the pipe symbol..
----- Original Message -----
From: <[email protected]>
To: "RBASE-L Mailing List" <[email protected]>
Sent: Wednesday, April 13, 2011 4:36 PM
Subject: [RBASE-L] - Launch Question
My day to ask questions! I need to launch an external program with
parameters. Here is my code:
set var vLaunch = 'HTTPGET.exe'
set var vParameters = '-0 "Test.dat" -r -S "*SRA" 192.168.0.83:1000'
set var vLaunch = (.vLaunch & '|' & .vParameters & '|W')
Launch .vLaunch
It does not work. Are the double quotes allowed in the parameters?
Any other thoughts?
Thanks again,
-Bob