Function
Return the application name of a conversation.
DDEGetAppName ( ConvID_IV )
•ConvID_IV is an integer value representing the conversation ID assigned by the DDE DLL.
Description
Called by client or server. This function returns a string that is the application 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
DDEGetAppName (Conv_IV) "\n"
copy DDEEnumerateConversations (Conv_IV) to Conv_IV
end loop