DdeExecute - method of the Pm object
Description:
Sending the command to the DDE server.
Syntax:
Boolean DdeExecute(String sGroup, String sCommand)
Parameters:
sGroup | (String) Name of DDE client group |
sCommand | (String) Forwarded command |
---|
Return value:
true - command accepted by the DDE server
false - command not accepted by the DDE server
Example:
JavaScriptVBScriptSelect and copy to clipboard
var bDdeExec = Pm.DdeExecute("GroupName", "Command");
Dim bDdeExec
bDdeExec = Pm.DdeExecute("GroupName", "Command")