I am using the shell command to pass a variable to another vb program like this:
Shell "C:\Folder\App.exe sName"
sName holds a value like "Bob". But when I call the second app with sName attached to the end of it, the Command only sees sName as sName and not the value "Bob" that is assigned to it. So how do I send a string's value to the shelled app?
Thanks...
Shell "C:\Folder\App.exe sName"
sName holds a value like "Bob". But when I call the second app with sName attached to the end of it, the Command only sees sName as sName and not the value "Bob" that is assigned to it. So how do I send a string's value to the shelled app?
Thanks...