|
<< Click to Display Table of Contents >> Navigation: Programming Mechworks PDM > DBWCommandShell > Commands Reference > PDMSystem > DDESend |
Send to the current connection the command assigned in <command string>
call DBWShell("DDESend CommandString")
command_string |
It is the command to send to the active connection. |
If any space is present in command string, it must be coded using the replace(...," ","|") function.
A connection must have been opened before sending commands.
DDEConnect command
DDEDisconnect command
DDE syntax and parameters for DBWorks StandAlone users
DBWShell("DDEConnect DdeExec DrawRect")
if okDBW = true then
DBWShell("DDESend " & replace("[pen(red)][line(0,0,50,50)]"," ","|") )
DBWShell("DDEDisconnect")
end if