Please enable JavaScript to view this site.

ESL Documentation

Function

Return the topic name associated with a specified conversation.

 

DDEGetTopic ( ConvID_IV )

 

ConvID_IV is an integer representing the conversation ID assigned by the DDE DLL.

Description

Called by client or server.  This function returns a string that is the topic name associated with the conversation specified by the ConvID_IV argument.  This function is available as long as the conversation is active.

Example

response to Enumerate

     copy 0 to Conv_IV

     copy DDEEnumerateConversations (Conv_IV) to Conv_IV

     while (Conv_IV > 0) loop

               add to ConvWindow insert at cursor

            DDEGetTopic (Conv_IV) "\n"

              copy DDEEnumerateConversations (Conv_IV) to Conv_IV

     end loop