DDE.TERMINATE
built-in procedureThis procedure terminates the specified conversation with a DDE server application.
DDE.TERMINATE (convid)
Parameter |
Type |
Description |
|
|
DDE conversion identifier returned by |
DDE.INITIATE
to start a
DDE conversation with a server application before attempting to use DDE.TERMINATE
.
DDE.TERMINATE
call, all subsequent Execute, Poke,
Request, and Terminate requests using the terminated conversation identifier
will result in an error.
DECLARE
ConvID PLS_INTEGER;
BEGIN
/* Open a DDE conversation with Microsoft Excel for Windows
on topic abc.xls. */
ConvID := DDE.INITIATE('EXCEL', 'C:\abc.xls');
...
/* Terminate the Microsoft Excel for Windows conversation */
DDE.TERMINATE(ConvID)
END;
About the DDE
built-in package
Copyright © 1984, 2005, Oracle. All rights reserved.