Go to the property page of your project, select the Application tab (the top one) and click on the Assembly Information button.
In here you can change the file and assembly versions of your programs.
You can access the version information in code with the following:
Code:
'Assembly Version
Dim objAssembly As System.Reflection.Assembly = System.Reflection.Assembly.GetExecutingAssembly()
Dim objAssemblyVersion As Version = objAssembly.GetName.Version
'File Version
Dim objFileVersion As System.Version
Comment