The code to get the text doesnt work.. i returns a zero value. The code I have so far is below, all the handles pull nonzerovalues. The SendMessage statements return 0.

VB Code:
  1. hWndTmp = FindWindow("IMClass", "SymbolType")
  2.         hWndChild = FindWindowEx(hWndTmp, 0, "YHTMLContainer", vbNullString)
  3.         hWndIEServer = FindWindowEx(hWndChild, 0, "Internet Explorer_Server", vbNullString)
  4.         Dim lLen As Long
  5.         Dim IElen As Long
  6.         Dim sText As String
  7.         lLen = SendMessage(hWndIEServer, WM_GETTEXTLENGTH, 0, IElen)
  8.         SendMessage(hWndIEServer, WM_GETTEXT, lLen + 1, sText)