Knowing the hwnd of the window, how do I read the contents of this? Before anyone ask me, I'm trying to get the text that was used in the Communicator window.

Below is the code I found on the Internet. The code is not mine.

using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;

namespace EventFun
{
class EventHookUp
{
    CommunicatorAPI.Messenger mCommunicator = null;

    static void Main(string[] args)
    {
        EventHookUp hu = new EventHookUp();
        hu.InitializeEventHocks();
        Console.ReadKey();
    }

    public void InitializeEventHocks()
    {
        mCommunicator = new CommunicatorAPI.Messenger();
        mCommunicator.OnIMWindowCreated += new CommunicatorAPI.DMessengerEvents_OnIMWindowCreatedEventHandler(mCommunicator_OnIMWindowCreated);
        mCommunicator.OnIMWindowDestroyed += new CommunicatorAPI.DMessengerEvents_OnIMWindowDestroyedEventHandler(mCommunicator_OnIMWindowDestroyed);
    }

    void mCommunicator_OnIMWindowCreated(object pIMWindow)
    {
        CommunicatorAPI.IMessengerConversationWndAdvanced stpIMWindow = pIMWindow as CommunicatorAPI.IMessengerConversationWndAdvanced;
        //stpIMWindow.History;
        long Hwnd = (long)stpIMWindow.HWND;
        Console.WriteLine("New IM Window Created : {0}", Hwnd);

        CommunicatorAPI.IMessengerContacts contactList = (CommunicatorAPI.IMessengerContacts)stpIMWindow.Contacts;
        StringBuilder sb = new StringBuilder();
        foreach (CommunicatorAPI.IMessengerContact imc in contactList)
        {
            sb.Append(imc.FriendlyName);
            sb.Append(Environment.NewLine);
        }
        Console.WriteLine(sb.ToString());
    }

    void mCommunicator_OnIMWindowDestroyed(object pIMWindow)
    {
        Console.WriteLine("IM Window Destroyed.");
    }
}
}
link|improve this question

1  
The first hit on Google leads to the API documentation: msdn.microsoft.com/en-us/library/bb758727(v=office.12).aspx you could probably get the information you need by querying the API instead of trying to find a general method of reading text from other windows. – Albin Sunnanbo Sep 21 '10 at 20:34
@Albin Sunnanbo I can search again, but how far had not found previously researched. Surely not post the question without first seeking the answer. In fact, parallel to this question, I continue my research. Thanks – Ph.E Sep 21 '10 at 20:50
feedback

1 Answer

up vote 3 down vote accepted

It sounds like you are trying to get the conversation text history from the conversation window? If so, George Durzi has an excellent blog post on this.

link|improve this answer
Friend, that was precisely what I wanted, and nobody was answering me. Still I'll check if I have the sources of my project, and I will try to implement the code described in the post. Any congratulations for the help. Success – Ph.E Oct 26 '10 at 10:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.