Suppose your app was invoked like this:
[tt]myapp.exe /c /N:foo /s[/tt]
Then if you do:
[tt]x = Command$[/tt]
So the value of x is "/c /N:foo /s"
So you could also use the Split() function to make this into an array, splitting on the empty spaces.
[tt]Dim x() As String
x = Split(Command$, " ")[/tt]