DdeClientEnabled - property of the PmaString object
Description:
Sets/returns if this object communicates using
DDE as the client.
Syntax:
Boolean DdeClientEnabled
Values:
true (default) - object communicates using DDE
false - object doesn't communicate using DDE
Note:
Property access
for read and write.
The property is meaningful only if on the "
DDE" tab of this object the communication is set by
DDE as the client (in the running application it is then possible to disable or re-enable the communication by this property).
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oString = pMe.Pm("/String0");
var bDdeEnabled = oString.DdeClientEnabled;
// Reading from the property
oString.DdeClientEnabled = true;
// Writing into the property
Dim oString
Set oString = pMe.Pm("/String0")
Dim bDdeEnabled
bDdeEnabled = oString.DdeClientEnabled
' Reading from the property
oString.DdeClientEnabled = true
' Writing into the property