Startup Properties/ Sub Main

jamesanthony

Freshman
Joined
Jun 9, 2003
Messages
25
Can someone please tell me where in vb.net is the startup properties, ie form to load, version no etc.
Why was it necessary to move it.
cheers
James anthony
 
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:
Visual Basic:
Imports System
Imports System.Reflection
'.....
<Assembly: AssemblyVersion("version")>
 
Back
Top