I can't find any option to set project property like we set it in VB 6. Compnay Name, Version and those stuff.
Cheers.
Printable View
I can't find any option to set project property like we set it in VB 6. Compnay Name, Version and those stuff.
Cheers.
In your project there will be a file called AssemblyInfo.vb which contains this information.
e.g.:
VB Code:
Imports System.Reflection Imports System.Runtime.InteropServices ' General Information about an assembly is controlled through the following ' set of attributes. Change these attribute values to modify the information ' associated with an assembly. ' Review the values of the assembly attributes <Assembly: AssemblyTitle("SpoolViewer")> <Assembly: AssemblyDescription("Spooled Print Job Viewer Utility")> <Assembly: AssemblyCompany("Merrion Computing Ltd")> <Assembly: AssemblyProduct("MCL PrintQueueWatch")> <Assembly: AssemblyCopyright("(c) 2003 Merrion Computing Ltd")> <Assembly: AssemblyTrademark("")> <Assembly: CLSCompliant(True)> 'The following GUID is for the ID of the typelib if this project is exposed to COM <Assembly: Guid("74A2410B-0A85-453C-9530-B7060331F6AC")> ' Version information for an assembly consists of the following four values: ' ' Major Version ' Minor Version ' Build Number ' Revision ' ' You can specify all the values or you can default the Build and Revision Numbers ' by using the '*' as shown below: <Assembly: AssemblyVersion("1.0.*")>
TA M8...Appreciate it.
Cheers.