Equinox Online Help - Language Reference - A to Z

Home

SetEquinoxTitle

Applies to
SyntaxSetEquinoxTitle [TitleText]
Action[Statement] Sets the Equinox main window caption at runtime.
ScopeUsable anywhere.
Notes

This statement sets the title that appears as the caption to the Equinox main window. By default, Equinox controls the caption of the main window. However, if you have an Equinox Publisher Edition licence, you can override the default behaviour by specifying a new caption on the Window tab of the Software settings.

The SetEquinoxTitle statement is a refinement of this, allowing you to modify the caption using TitleText, while an application is running. Before you can use this statement, you must first check the "Enable change caption" option on the Display tab of the Software settings. Changes made using this statement remain in effect until either the application is closed, or another SetEquinoxTitle statement is executed.

CategoryForms
See Also ChangeEditLine, ChangeGroup, ChangeObject, ChangePage, CurrentEventName, CurrentGroupName, CurrentObjectName, CurrentPageName, DefaultHelp, EnableGroup, EnablePage, Get, IsPageScroll, NextObjectName, Set, SetDefaultHelp, SetPageScroll, SetPageTitle, ShowPage
Example

This example prompts for a new Equinox main window caption and uses it if one is specified.

string NewTitle

PopupTitle "Set New Title"
NewTitle = Input(New title please, True)
if Not sysreply then SetEquinoxTitle NewTitle