Click here to Skip to main content
6,305,776 members and growing! (17,519 online)
Email Password   helpLost your password?
Languages » C / C++ Language » Window Management     Intermediate

Retrieving Conversations from Yahoo Messenger

By Deepesh Dhapola

Describes how to retreive text from the Yahoo Messenger chat window using the MSHTML COM interfaces.
VC6, VC7Win2K, WinXP, Visual Studio, ATL, Dev
Posted:27 Feb 2003
Views:73,722
Bookmarked:30 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
15 votes for this article.
Popularity: 4.07 Rating: 3.46 out of 5
2 votes, 13.3%
1
2 votes, 13.3%
2
1 vote, 6.7%
3
7 votes, 46.7%
4
3 votes, 20.0%
5

Sample Image - maximum width is 600 pixels

Introduction

In this second article I'm showing how to retrieve conversation text from Yahoo messenger. The first article talks about retrieving conversation text from MSN Messenger and it can be viewed here. In this second article, we will discuss how we can do the same with Yahoo messenger.

As described in first article, to get the contents from the Messenger window what we are doing is we are iterating through all the top level windows in Windows OS and checking if its desired Messenger window, if its the desired window then we are iterating through its child windows to get the HWND of the window that contains chat text. Once we get the handle to the window, we can use our code to retrieve the conversation text. Except the last step of getting text from conversation window handle, all the steps remain same for both MSN and Yahoo messengers. In MSN messenger we used the Windows clipboard to copy text from the MSN window and pasting this on our application. This works fine for some windows but not all windows support it; the Yahoo conversation window is one of them.

If you open up spy++ and check the window class of Yahoo messenger's conversation text, you'll find that the window class of this window is 'Internet Explorer_Server'. This windows is installed by Internet Explorer and is responsible for rendering and displaying HTML pages. To give developers flexibility, Microsoft has exposed mechanisms that allows us to manipulate the contents of this window from our own processes. To accomplish our goal we will be using a pointer to the document that contains HTML text being displayed in the conversation window. IHTMLDocument2 interface represents the information contained in the conversation window. MSDN describes the IHTMLDocument2 interface as This interface retrieves information about the document, and examines and modifies the HTML elements and text within the document.. So to get the pointer to IHTMLDocument2 interface, we will send WM_HTML_GETOBJECT window message to 'Internet Explorer_Server' window and pass the result to the ObjectFromLresult() method. A successful call to ObjectFromLresult() method gives us a pointer to IHTMLDocument2 interface. Finally, to get the entire text in our application we get the body property of IHTMLDocument2 which returns us a pointer to the IHTMLElement interface and getting the <code lang="c++">innerText property of IHTMLElement interface returns us the entire text contained in the conversation text. If you want to get this in original HTML form then you can call innerHTML property of IHTMLElement.

This should be clear from the following code snippet:

//Code snippet

char wndowclass[CLASS_SIZE];

if (GetClassName(hwnd,wndowclass,CLASS_SIZE)==0)
    return TRUE;

string strTemp(wndowclass);
if (strTemp==string("Internet Explorer_Server"))
{
    CoInitialize(NULL);
    HINSTANCE hInst = ::LoadLibrary( _T("OLEACC.DLL") );
    string strTemp;
    CComPtr spDoc;
    LRESULT lRes;

    strTemp="";
    UINT nMsg = ::RegisterWindowMessage( 
                        _T("WM_HTML_GETOBJECT") );
    ::SendMessageTimeout( hwnd,
        nMsg,
        0L, 
        0L,
        SMTO_ABORTIFHUNG,
        1000,
        (DWORD*)&lRes );

    LPFNOBJECTFROMLRESULT pfObjectFromLresult =
        (LPFNOBJECTFROMLRESULT)::GetProcAddress( hInst,
        _T("ObjectFromLresult") );
    if ( pfObjectFromLresult != NULL )
    {
        HRESULT hr;
        hr = (*pfObjectFromLresult)( lRes,
            IID_IHTMLDocument2, 
            0, 
            (void**)&spDoc );
        if ( SUCCEEDED(hr) )
        {
            CComPtr pHTMLElement; 
            hr=spDoc->get_body(&pHTMLElement);
            BSTR bstrText;
            pHTMLElement->get_innerText(&bstrText);
            strTemp=(char *)_bstr_t(bstrText);

            pChatText->SetWindowText(strTemp.c_str());
        }
    }
    ::FreeLibrary( hInst );
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Deepesh Dhapola


Member
www.d2labs.com
blogs.d2labs.com
Occupation: Web Developer
Location: India India

Other popular C / C++ Language articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 16 of 16 (Total in Forum: 16) (Refresh)FirstPrevNext
GeneralHow can we send a message to friend? Pinmembercrystvn18:59 21 Nov '06  
Generalon MAC OS X Pinmemberram_kri_kri8:18 16 Jan '06  
GeneralRe: on MAC OS X Pinmembermacuser5557:00 11 Nov '07  
Questiondoes not work Pinsussrajan singh0:13 12 Oct '05  
Questiondoes not work Pinsussrajan singh0:11 12 Oct '05  
GeneralCan not get any text! ? Pinmembernhoangf18:27 22 Sep '05  
Generalcapture friend list Pinmembermunyuk18:47 18 May '05  
GeneralA question PinmemberThatsAlok21:09 17 Mar '05  
GeneralHow do we change the status text? PinmemberpHroZeN GeeK7:18 3 Feb '04  
GeneralRe: How do we change the status text? Pinmemberasa si ?9:52 18 Jun '04  
GeneralRe: How do we change the status text? PinmemberDuna Marius Viorel13:06 25 Jan '05  
GeneralRe: How do we change the status text? Pinmemberhaha62423:34 17 Feb '05  
GeneralBUG - Memory lick Pinmembercrowe2:46 3 Nov '03  
GeneralMSN 6 Pinmembermyself15062:58 27 Jul '03  
GeneralGet chat text from AOL PinmemberSaquib Razak6:14 12 Jun '03  
GeneralNot just a 'mechanism'... PineditorHeath Stewart20:11 27 Feb '03  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 27 Feb 2003
Editor: Heath Stewart
Copyright 2003 by Deepesh Dhapola
Everything else Copyright © CodeProject, 1999-2009
Web17 | Advertise on the Code Project