DDE.APP_END
built-in functionThis function ends a DDE server application program that DDE_APP_BEGIN
built-in function starts.
DDE.APP_END (appid)
Parameter |
Type |
Description |
|
|
Application identifier that is returned from DDE.APP_BEGIN |
To terminate a DDE server application, the DDE server application must have
been previously started by calling DDE.APP_BEGIN
built-in function.
The DDE server application can also be terminated in standard Microsoft Windows fashion, such as by double-clicking the Control menu.
DECLARE
AppID PLS_INTEGER:
BEGIN
/* Start Microsoft Excel with spreadsheet emp.xls loaded. */
AppID := DDE.APP_BEGIN('C:\excel\excel.exe C:\emp.xls'
DDE.APP_MODE_NORMAL);
...
/* End Microsoft Excel program. */
DDE.APP_END(AppID);
END;
About the DDE
built-in package
Copyright © 1984, 2005, Oracle. All rights reserved.