DdeClientEnabled - property of the PmaData object
Description:
The property returns or sets the permission of the DDE client communication.
Syntax:
Boolean DdeClientEnabled
Values:
true (default) - Object communicates by means of DDE
false - Communication by means of DDE is disabled
Note:
Property access
for read and write.
The property is meaningful only if the communication is set on the "
DDE" tab of this object as the
DDE client (in the running application it is then possible to disable or re-enable the
DDE communication by this property).
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oData = pMe.Pm("/Data");
oData.DdeClientEnabled = true;
// false
Dim oData
Set oData = pMe.Pm("/Data")
oData.DdeClientEnabled = true
' false