How do i get all the information after the .exe stored into a string for processing???
How do i get all the information after the .exe stored into a string for processing???
You mean the command line arguments? Call the Command$ Function.
VB Code:
Dim myCommandLine as String myCommandLine = Command$()
Now you have the command line arguments.
Thanks