mirc chat window text
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, I want to retrieve text from the mirc channal window or from the private message, I used SendMessage api to get its text lenght and then the text but it always return 0 length, code tried: Let lngmirc& = FindWindow("mirc", vbNullString) Let lngmdi& = FindWindowEx(lngmirc&, 0&, "mdiclient", vbNullString) Let lngchannel& = FindWindowEx(lngmdi&, 0&, "mIRC_Channel", vbNullString) Let lngedit = FindWindowEx(lngchannel&, 0&, "Static", vbNullString) I also tried using the EnumChildWindows and get the window handle to get its text but no use. And also used SendMessageByString() api. Anyone have any idea. Thanks in advance. :)