You can set the startup object by going to solution explorer, then right click your project and select Properties, it should open into the General section of Common Properties, there you can set it.
You can modify the version of your program using the AssemblyInfo.vb file generated by VS.NET, or set it yourself somewhere in the code:
Imports System
Imports System.Reflection
'.....
<Assembly: AssemblyVersion("version")>