for some reason, I can do this when I use a command line argument:
Code:
text1.Text = Command$
But I can't do this:
Code:
If (Command$ <> "") then
    text1.Text = Command$
End If
And I have no F**KING clue why its not working, I tried to use Command$ as the index of an array(it was an integer) and an error box comes up saying "Index out of bounds" when I hit debug and float the mouse over the Command$ as the index of the array and the TextTip says that Command$ = Empty, but it obviously has content, as I showed in the first code. What's the deal? Anybody?