DataWindow controls, Graph controls, windows
The Title property specifies the title text of the control or window. In a window or DataWindow control, this value is displayed only if the TitleBar property is also enabled.
To specify title text:
Type the title text in the Title field and select the TitleBar check box on the General page of the control’s Properties view.
The Title property takes a string value. The following lines set a title for a DataWindow control dw_1.
dw_1.TitleBar = TRUE dw_1.Title = "Monthly Report"