DDEInitiate Function |
Syntax:
Group:
Description:
Initiate a DDE conversation with App$ using Topic$. If the conversation is successfully started then the return value is a channel number that can be used with other DDE instructions and functions.
Parameters:
Parameter |
Description |
Locate this server application. |
|
This is the server application's topic. The interpretation of this value is defined by the server application. |
Example:
Sub Main
ChanNum = DDEInitiate("PROGMAN","PROGMAN")
DDEExecute ChanNum,"[CreateGroup(XXX)]"
DDETerminate ChanNum
EndSub