Retrieving Chat Text from Messengers – Part II Yahoo Messenger

CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More.

Environment: VC7, Win 95/98/Me/NT/2000/XP

In this two-article series, I’m showing how to retrieve conversation text from two most popular Instant Messengers. This is second part of the series. The first part talks about retrieving conversation text from MSN Messenger and it can be visited here. In this second part, we will discuss how we can do the same with Yahoo messenger.

As described in the first part, 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 it’s the desired window, 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 for the last step of getting text from the 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 paste this to our application. This works fine for some windows, but not all windows support it; 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 mechanism 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 the HTML text being displayed in the conversation window. IHTMLDocument2 interface represents the information contained in the conversation window. MSDN describes 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 the IHTMLDocument2 interface, we will send a ‘WM_HTML_GETOBJECT’ window message to the ‘Internet Explorer_Server’ window and pass the result to the ObjectFromLresult() method. A successful call to the ObjectFromLresult() method gives us a pointer to the IHTMLDocument2 interface. Finally, to get the entire text in our application, we call the body property of IHTMLDocument2, which returns us a pointer to the IHTMLElement interface and calls the innerText property of the IHTMLElement interface, which returns us the entire text contained in the conversation text. If you want to get this in its original HTML form, you can call the innerHTML property of IHTMLElement. This will be clear from the following 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<IHTMLDocument2> 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<IHTMLElement> pHTMLElement;
hr=spDoc->get_body(&pHTMLElement);
BSTR bstrText;
pHTMLElement->get_innerText(&bstrText);
strTemp=(char *)_bstr_t(bstrText);

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

Downloads

Download demo project – 7.00 Kb

Download source – 26.4 Kb

More by Author

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Must Read