C++, How...? - Printable Version -Shoutbox (https://shoutbox.menthix.net) +-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58) +--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4) +---- Forum: WLM Plus! General (/forumdisplay.php?fid=23) +----- Thread: C++, How...? (/showthread.php?tid=44771) C++, How...? by Cinder on 05-15-2005 at 08:07 PM
Messanger Plus is made in C++, right? But do they do it. Which include/header-file do they use..? RE: C++, How...? by RaceProUK on 05-15-2005 at 09:09 PM
It's a little more complex than just having a few header files laying around. RE: C++, How...? by matty on 05-15-2005 at 09:50 PM Plus! actually injects a dll into the Process of MSN Messenger to call internal commands since it is very hard to code on the Messenger API in Windows XP since most of the API is referenced to Windows Messenger. RE: C++, How...? by Cinder on 05-16-2005 at 07:11 AM
Ok.. I know it's somthing like windowMessage(WM_WRITE,"richTextEdit","Hello!") or somthing... RE: C++, How...? by Dempsey on 05-16-2005 at 08:28 AM you can find the hwnd of the DIRECTUIHWND and then sendkeys the cahracters you want to send and then send enter, but thats not a very good way to do it RE: C++, How...? by RaceProUK on 05-16-2005 at 11:10 AM
Much better to find the hwnd of the convo window, then use Active Accessibility to get to the text input area, and set its value property. |