I have two vb.net apps and I want to start one from the other while passing a parameter to it.

To start it I use:
System.Diagnostics.Process.Start(Application.StartupPath & "\pup.exe")

but how do I pass a parameter???

I know you can put arguments after the path but how does the other path get them????

Help!