Windows Live Messenger software-defined display
1 answer
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. Here's an example of setting an 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.");
}
+1
source to share