do I have to use environment.commandline? or is there a better way to get them, perhaps separated into an array?
Printable View
do I have to use environment.commandline? or is there a better way to get them, perhaps separated into an array?
VB Code:
Dim strArgs() As String strArgs = Environment.GetCommandLineArgs()
The first arguement is always your executable's path. Everything after the first item in the array is what was apssed to the executable
thanks :)