Let's say I have a program called "Test.exe", something like the following:
Sub StartupTest(sSomeString)
MsgBox sSomeString
End Sub
From another program (or command line, or wherever), how do I call Test.exe, pass it a parameter, and have it automatically accept the parameter and put it into sSomeString?
Sub StartupTest(sSomeString)
MsgBox sSomeString
End Sub
From another program (or command line, or wherever), how do I call Test.exe, pass it a parameter, and have it automatically accept the parameter and put it into sSomeString?