[i] Title of an application
Source position: MUIClass.Base.pas line 269
published property TMUIApplication.Title : string |
The title is e.g. shown in Commodities Exchange or in the MUI preferences program.
An application title shall not contain any version information, just the pure title. Also, special characters such as ":/()#?*..." are not allowed.
You should use a quite long and unique name for your applications. Naming it "Viewer" or "Browser" is not a wise choice.
The length of the name must not exceed 30 characters! Strings longer than 30 chars will be cut.
Example
MUIApp.Title := 'WBMan'; MUIApp.Version := '$VER: WbMan 0.24 (19.7.93)'; MUIApp.Copyright := '© 1993 by Klaus Melchior'; MUIApp.Author := 'Klaus Melchior'; MUIApp.Description := 'Manages the WBStartup.'; MUIApp.Base := 'WBMAN';
|
[i] A copyright string, containing the year and the company. |
|
|
[i] Version string for the application. |
|
|
[i] Short description, about 40 characters. Shown e.g. in commodities exchange. |
|
|
[i] Name of the applications author. |
|
|
[i] Basename for an application |