title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Application.DDETerminate method (Excel) |
vbaxl10.chm183094 |
|
|
f05adf6d-5714-12c4-39ce-af4bc31f4d32 |
04/04/2019 |
medium |
Closes a channel to another application.
expression.DDETerminate (Channel)
expression A variable that represents an Application object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Channel | Required | Long | The channel number returned by the DDEInitiate method. |
This example opens a channel to Word, opens the Word document Formletr.doc, and then sends the FilePrint command to WordBasic.
channelNumber = Application.DDEInitiate( _
app:="WinWord", _
topic:="C:\WINWORD\FORMLETR.DOC")
Application.DDEExecute channelNumber, "[FILEPRINT]"
Application.DDETerminate channelNumber
[!includeSupport and feedback]