Language:
Русский
English
WindowTitle (variable) (WinCrt unit)
Determines the title of the CRT window.
var WindowTitle: array[0..79] of Char;
The default value is the full path of the program's .EXE file.
You can change the title by storing a new string in WindowTitle before the CRT window is created.
Here is an example:
StrCopy(WindowTitle, 'Hello World');