Congrats

Departure, When you found out ... don't forget to share it with me. Thanks bro !!
Well I'm not into inSpeak yet ... their sound quality is kidda low ... so I don't like it much ... but here is some hints ... I thought I may be helpful to you
' get HWND text chat
Function GetMyWindow() as long
'Variables
Dim lParent as long
Dim lChild(1 to

as long
'Get Parent Window
lParent = FindWindow("TChatRoom", "inSpeak Help Lobby - Help Voice Room")
'Get Child Window(s)
lChild(1) = FindWindowEx(lParent, 0, "TSPanel", "")
lChild(2) = FindWindowEx(lChild(1), 0, "TSPanel", "")
lChild(3) = FindWindowEx(lChild(2), 0, "TSPanel", "")
lChild(4) = FindWindowEx(lChild(3), 0, "TSPanel", "")
lChild(5) = FindWindowEx(lChild(4), 0, "TSPanel", "")
lChild(6) = FindWindowEx(lChild(5), 0, "TSPanel", "")
lChild(7) = FindWindowEx(lChild(6), 0, "THTMLViewer", "")
lChild(8) = FindWindowEx(lChild(7), 0, "TPaintPanel", "")
GetMyWindow = lChild(8)
End Function
' This function will return the handle to insPeak text chat
after that you need to do the API thinggy to get the TEXT ...
If this hint is not enough tell me i'll put more next time

...