ClientName
property (DataWindow object)
Description
The name of the OLE client. The default is “Untitled.” ClientName
is used by some applications in the server window’s title.
Applies to
OLE Object and TableBlob controls
Syntax
PowerBuilder dot notation:
|
1 |
dw_control.Object.controlname.ClientName |
Describe and Modify argument:
|
1 |
"controlname.ClientName { = ' clientname ' }" |
|
Parameter |
Description |
|---|---|
|
controlname |
The name of a blob column or an OLE Object |
|
clientname |
(exp) A string expression to be used in the title Begin the string |
Usage
In the painter
Select the control and set the value in the Properties view,
Options tab.
Examples
|
1 2 3 4 5 6 |
cname = dw1.Object.emppict_blob.ClientName dw1.Object.emppict_blob.ClientName = & "~t'Data for ' String(emp_id)" cname = dw1.Describe("emppict_blob.ClientName") dw1.Modify("emppict_blob.ClientName='" + & "~t~"Data for ~" + String(emp_id)'") |