A script-enabled browser is required for this page to function properly.

DDE.APP_END

Description

Ends a DDE server application program that DDE_APP_BEGIN starts.

Syntax

DDE.APP_END (AppID)

Parameters

Parameter

Type

Description

AppID

PLS_INTEGER

Application identifier that is returned from DDE.APP_BEGIN

Notes

The DDE server application can also be terminated in standard Microsoft Windows fashion, such as by double-clicking the Control menu.

DDE.APP_END Restrictions

To terminate a DDE server application, the DDE server application must have been previously started by calling DDE.APP_BEGIN.

DDE.APP_END Examples

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;