To pass arguments to the executable apps in vb.net you will use Environment.GetCommandLineArgs(), which will return an array of string.To do this declare a variable to hold the passed parameters.
Dim RetVal as string()
RetVal = Environment.GetCommandLineArgs()
For more information click this link.