This is a single DLL that provides a set of foundation classes for the MSNP11 protocol. It plugs straight into your project, and makes it possible to interact with the Microsoft® Messenger server. Without having to learn the protocol
Now anyone can make their own Messenger project
Just 7 lines to make it work in VB;
Private WithEvents MSNP As MSNP11
Private Sub Form_Load()
Set MSNP = New MSNP11
End Sub
Private Sub cmdLogin_Click()
MSNP.ConnectNS username, password
End Sub
It will also provide a Switchboard class, which will provide Display Picture, File Transfer, Nudge, Custom Backgrounds and Custom Emoticon support.
Let me know what you think