vote up 1 vote down star

How can I programmatically set Windows Live Messenger (currently using 8.5.1302.1018) display picture. Possible solutions can be in C++, .NET or VB. Even just a hint could be useful.

flag

2 Answers

vote up 0 vote down

The first resource to look at would be the MSN API: http://dev.live.com/messenger/

I think you will find the answer there.

link|flag
I was not aware that Windows Live Messenger had an API. Will take a look. Thanks for the pointer. – smink Dec 22 '08 at 17:57
No problem, have fun! – Filip Ekberg Dec 22 '08 at 18:01
vote up 1 vote down

There is an open source project called MSNP-Sharp that you should look at.

You can use this to connect to MSN and set your profile picture. Here's an example of setting the image:

        try
        {
            Image fileImage = Image.FromFile(ConfigurationSettings.AppSettings["ImageFileName"]);
            DisplayImage displayImage = new DisplayImage();
            displayImage.Image = fileImage;
            m_Messenger.Owner.DisplayImage = displayImage;
            m_Messenger.Nameserver.StorageService.UpdateProfile(fileImage, "MyPhoto");
        }
        catch
        {
            LogError(new StackTrace(true), "Error adding avatar image.");
        }
link|flag
Hum, looks good. I will take a look. Thanks scurial. – smink Mar 9 at 22:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.