CompanyName

Returns the company name stored in the project’s version information. Read-only.

Syntax: object.CompanyName

object
required An object expression that evaluates to an _App object. In practice this is the global App object.

The value is taken from the Company Name field in the project’s version information, as set in the twinBASIC project settings. When the field has not been filled in, CompanyName returns an empty string.

Example

This example shows the company name in a message box.

MsgBox "Company: " & App.CompanyName

See Also