|
|
|
|
|
DDEDisconnect (Function) In french: DDEDéconnecte Deletes a connection between the current program and a recipient. MyConnection = DDEConnect("Excel", Subject)
Counter = 3
LOOP
IF DDESend(MyConnection, Item, Data, 10) THEN BREAK
Counter --
IF Counter = 0 THEN
Error("The information was not sent to Excel")
BREAK
END
END
DDEDisconnect(MyConnection)
Syntax
<Result> = DDEDisconnect([<Connection ID>])
<Result>: Boolean - True if the disconnection was performed,
- False if an error occurred (DDEError returns the details of the error).
<Connection ID>: Optional integer Connection identifier, returned by DDEConnect. If this parameter is not specified, the current connection is disconnected.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|