I have this statement
Dim temp() As String = System.Environment.GetCommandLineArgs()
Which is sent via context menu while in explorer.
It is my observation that the first item is the path to the program's exe file, and all other
item(s) are the highlighted files "%1". I only wish to create an array of the highlighted files.
What is the best way to create the array by skipping over the first item (index 0) in GetCommandLineArgs?
Any help is appreciated.
Scot-65
Dim temp() As String = System.Environment.GetCommandLineArgs()
Which is sent via context menu while in explorer.
It is my observation that the first item is the path to the program's exe file, and all other
item(s) are the highlighted files "%1". I only wish to create an array of the highlighted files.
What is the best way to create the array by skipping over the first item (index 0) in GetCommandLineArgs?
Any help is appreciated.
Scot-65