|
<< Click to Display Table of Contents >> Navigation: Programming Mechworks PDM > DBWCommandShell > Commands Reference > PDMSystem > DDEConnect |
Creates a connection with server <server name>, accessing the DDE topic <topic name>
call DBWShell("DDEConnect ServerName TopicName ")
ServerName |
It is the DDE server to connect to. |
|---|---|
TopicName |
It is the DDE topic to access to. |
The connection is active until the DDEDisconnect command has been called.
DDEDisconnect command
DDESend 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