Message.Title

Description

The title of the dialog box that displays when an error occurs.

Applies to

DataWindows

Syntax

PowerBuilder dot notation:

dw_control.Object.DataWindow.Message.Title

Describe and Modify argument:

"DataWindow.Message.Title { = ' titlestring ' }"

SyntaxFromSql:

DataWindow(Message.Title = ' titlestring ' )

Parameter

Description

titlestring

A string containing the title for the title bar of the DataWindow dialog box that displays when an error occurs

Examples

Example 1

setting = dw1.Object.DataWindow.Message.Title

dw1.Object.DataWindow.Message.Title = "Mistake!"

Example 2

setting = dw1.Describe("DataWindow.Message.Title")

dw1.Modify("DataWindow.Message.Title='Bad, Bad, Bad'")

Example 3

SQLCA.SyntaxFromSQL(sql_syntax, &

"Style(...) &

DataWindow(Message.Title='Sales Report' ...) ...", &

ls_Errors)