OLEClass

Description

The name of the OLE class for the TableBlob control.

Applies to

TableBlob controls

Syntax

PowerBuilder dot notation:

dw_control.Object.tblobname.OLEClass

Describe and Modify argument:

"tblobname.OLEClass { = ' oleclassname ' }"

Parameter

Description

tblobname

The TableBlob column for which you want to get or set the class of server application.

oleclassname

(exp) A string specifying a class of an OLE server application installed on your system. Oleclassname is quoted and can be a DataWindow expression.

Usage


In the painter

Select the control and set the value in the Properties view, Definition tab, OLE Class: Description option.

Examples

Example 1

setting = dw1.Object.blob_1.OLEClass

dw1.Object.blob_1.OLEClass = 'Word.Document'

Example 2

setting = dw1.Describe("blob_1.OLEClass")

dw1.Modify("blob_1.OLEClass='Word.Document'")