The name of the OLE class for the TableBlob control.
TableBlob controls
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. |
Select the control and set the value in the Properties view, Definition tab, OLE Class: Description option.
setting = dw1.Object.blob_1.OLEClass
dw1.Object.blob_1.OLEClass = 'Word.Document'
setting = dw1.Describe("blob_1.OLEClass")
dw1.Modify("blob_1.OLEClass='Word.Document'")