Hi
I run a batch file by VB6. The bach file need to pass a text file and a string (such as abc).
I used the following commands but I faced errors :
Shell "n:\aa.bat " & "c:\a1.txt" & "abc " , vbNormalFocus
Shell "n:\aa.bat " & " " & "c:\a1.txt" & " " & "abc" , vbNormalFocus
What is the command for doing that?