Setting Application.ProductName in design mode

  • Thread starter Thread starter Water Cooler v2
  • Start date Start date
W

Water Cooler v2

How do you set Application object properties in design mode? I am
doing a WinForms app using v1.1 of the framework and VS.NET 2003.

In VB6, there used to be an App object and you could easily set its
properties in Project->Properties menu in the VS 6.0 IDE.
 
Water Cooler v2 said:
How do you set Application object properties in design mode? I am
doing a WinForms app using v1.1 of the framework and VS.NET 2003.

Take a look at the project's "AssemblyInfo.vb" file. This file contains
some attributes which can be used to specify the values.
 
How do you set Application object properties in design mode? I am
doing a WinForms app using v1.1 of the framework and VS.NET 2003.

In VB6, there used to be an App object and you could easily set its
properties in Project->Properties menu in the VS 6.0 IDE.

Simply check "properties" window in VS IDE for each object. I beleive
that property values are contained in "Windows Form Designer generated
code" region in your .vb source code file.
 
Back
Top