MikeC14081972
Programmer
I'm trying to pass multiple command lines from Access using Shell
I can change the directory using the following
This then leaces the command line window open with the following
{Full FilePath}>
My question is: How can I now pass another command to the open window to execute a batch file with parameters.
I have tried
but this doesn't work due to spaces in the filepath.
Thanks
I can change the directory using the following
Code:
strShell = "cd /d H:\{Full FilePath}
{Full FilePath}>
My question is: How can I now pass another command to the open window to execute a batch file with parameters.
I have tried
Code:
strShell = "H:\{Full FilePath}\batch {parameters}"
Thanks