Shoutbox

change display picture - 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: change display picture (/showthread.php?tid=29482)

change display picture by Yousef on 08-03-2004 at 10:31 PM

Hi there,
I searched the forums and I found several plugins/addons that change your msn display picture.
Does anyone knows how this is done? I'm a c++ programmer and would like to know how to do this (a)


RE: change display picture by Jutx on 08-03-2004 at 10:58 PM

I think it is done using MyProperty in the Messenger API. i don't know C++ but the VB equivalent is something like this

code:
MSN.MyProperty(2) = "path_to_DP"

assuming MSN is the Messenger object
RE: change display picture by bach_m on 08-03-2004 at 11:51 PM

well, you could start by looking at the Plugin doccumentation


RE: change display picture by dotNorma on 08-04-2004 at 03:16 AM

Erm , No the plugin documentation wont help at all ¬_¬

Its...

Public WithEvents MSN As Messenger
-------------------------------------------------
Set MSN = New Messenger
-------------------------------------------------
MSN.MyProperty(2) = "C:/......Porn.jpg"

in VB


RE: change display picture by Yousef on 08-04-2004 at 08:02 AM

k thanks, that will help me enough I hope :D