VB.NET Language in a Nutshell
| Application.CompanyName Property |
Class
System.Windows.Forms.Application
Syntax
Application.CompanyName( )
Return Value
A String containing the company name for the application
Description
Gets the company name for the application. This is a read-only property.
The value of the CompanyName property can be defined by including the <AssemblyCompany> attribute in the AssemblyInfo file for the application. Its syntax is:
<Assembly: AssemblyCompany(" sCompany ")>
where sCompany is a string literal containing the company name.
See Also
Application Class, Application.ProductName Property, Application.ProductVersion Property