What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Plug-Ins » Received Windows Messages (HELP!)

Received Windows Messages (HELP!)
Author: Message:
Ace
New Member
*


Posts: 3
Joined: Jan 2005
O.P. Received Windows Messages (HELP!)
Let's see... this is my first post in these forums...
I am developing a plugin for MsgPlus and I've come to a part where I have to make the user change his status... I can make it through Messenger API but it's a mess in case the user has more than 1 MSN session opened...
There is a way to change user's nick... which is like this (in VB)
code:
Public Function SetNewName(ByVal sMessage As String) As Boolean
    Dim nMsg As Long
    nMsg = RegisterWindowMessage("MessengerPlus_SetName")

    Dim nResult As Long
    nResult = SendMessage(HWND_BROADCAST, nMsg, StrPtr(sMessage), 1)
    If (nResult = 0) Then
        SetNewName = False 'Can happen if the user if offline
    Else
        SetNewName = True 'There is no absolute way to detect if the function was successful
    End If
End Function

You can see that it "sends" MessengerPlus_SetName plus the desired name to MsgPlus process... So I want to know if there is any "message" that would change user status, and if there is a list of these messages.
Thx a lot in advance :)
01-07-2005 10:14 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Received Windows Messages (HELP!) - by Ace on 01-07-2005 at 10:14 PM
RE: Received Windows Messages (HELP!) - by Choli on 01-07-2005 at 10:47 PM
RE: Received Windows Messages (HELP!) - by Ace on 01-07-2005 at 11:02 PM
RE: Received Windows Messages (HELP!) - by Tochjo on 01-07-2005 at 11:06 PM
RE: Received Windows Messages (HELP!) - by Ace on 01-07-2005 at 11:12 PM
RE: Received Windows Messages (HELP!) - by Choli on 01-08-2005 at 02:03 AM


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