On Sun, 07 Dec 2008 11:24:18 -0000, "chunwaihome" <[EMAIL PROTECTED]> wrote:
>Hello, > >"q:\totalcmd\abc.exe" /q /z "e:\Emily\21" >the above command can work,but when i use do statement >do(?"q:\totalcmd\abc.exe" /q /z ?"e:\Emily\21") >it dont work >Any wrong? The do command uses up to 4 parameters. The first is the filepath to the command. The second is the parameters of the command. Both are expressions and must be quoted if literals. do(?"q:\totalcmd\abc.exe",?" /q /z e:\Emily\21") should work. -- Carroll Robbins
