question about shortcuts?

VB.NET:
Dim strStartupArguments() As String, intCount As Integer
		strStartupArguments = System.Environment.GetCommandLineArgs
		For intCount = 0 To UBound(strStartupArguments)
			MessageBox.Show(strStartupArguments(intCount).ToString)
		Next
 
Back
Top