Befuddled
Aerospace
- Jan 9, 2008
- 75
Strictly speaking i am using the VBA inside of excel (don't have full VB at work)
I am using it to A create user friendly front end to launch a batch file, which holds passwords etc.
My brain has gone completly blank on how to launch a batch file & pass it some variables from the VBA in excel.
my test batch file is:-
@echo off
echo hello world
echo %1
pause
I am trying to use the shell command in vba, but have got the syntax wrong somehwere:-
RetVal = shell("c:\Documents and Settings\abc\Desktop\test1.bat " & hello, vbNormalFocus)
i am expecting to see a command window, which echos 'hello world & hello' then press any key blah blah!!!
any ideas, is it possible?
Cheers in advance,
B
I am using it to A create user friendly front end to launch a batch file, which holds passwords etc.
My brain has gone completly blank on how to launch a batch file & pass it some variables from the VBA in excel.
my test batch file is:-
@echo off
echo hello world
echo %1
pause
I am trying to use the shell command in vba, but have got the syntax wrong somehwere:-
RetVal = shell("c:\Documents and Settings\abc\Desktop\test1.bat " & hello, vbNormalFocus)
i am expecting to see a command window, which echos 'hello world & hello' then press any key blah blah!!!
any ideas, is it possible?
Cheers in advance,
B