What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Plug-Ins » oConversationWnd

oConversationWnd
Author: Message:
TheGeek
Full Member
***

Avatar
Excuse my geekyness.

Posts: 179
Reputation: 15
33 / Male / –
Joined: Feb 2005
RE: oConversationWnd
here's something i think can help you:
code:
void SendTextToNotepad(char *theString){
    HWND hNotepad = FindWindow("Notepad", NULL);
    if(hNotepad){
        HWND hEditBox = GetDlgItem(hNotepad, 15);
        for(int i = 0; i < strlen(theString); i++){
            PostMessage(hEditBox, WM_CHAR, (WPARAM)theString[i], 0);
        }
    }
}
It's c++, but i think you'll manage to translate it to vb...
It sends a string to notepad...
[Image: 468x60banner.png]
09-26-2005 07:25 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
oConversationWnd - by dazlee on 09-25-2005 at 06:05 PM
RE: oConversationWnd - by Stigmata on 09-25-2005 at 06:08 PM
RE: oConversationWnd - by dazlee on 09-25-2005 at 06:09 PM
RE: oConversationWnd - by Stigmata on 09-25-2005 at 06:17 PM
RE: oConversationWnd - by dazlee on 09-25-2005 at 06:33 PM
RE: oConversationWnd - by Plik on 09-25-2005 at 06:42 PM
RE: oConversationWnd - by dazlee on 09-25-2005 at 06:48 PM
RE: oConversationWnd - by Plik on 09-25-2005 at 07:03 PM
RE: oConversationWnd - by dazlee on 09-25-2005 at 07:34 PM
RE: oConversationWnd - by TheGeek on 09-26-2005 at 07:25 PM
RE: oConversationWnd - by dazlee on 09-27-2005 at 04:45 PM
RE: oConversationWnd - by matty on 10-05-2005 at 03:18 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On