Archive for the 'MSN Messenger' Category

DPMagnifier Alpha Released

DPMagnifier Alpha version was released few weeks ago, but I did not have time to blog it until now.

DPMagnifier is another Java Applet coded by me. With this applet you can open a picture and manipulate it. You can change it from colored to black and while, sepia, inverted colors, gradient effect. You can add strikes, smooth border, glass effect and you can add text to it. “It is a very cool applet to get rid of the boring looking display pictures” said Elias El Hajj ( too bad you blogged it before me Elias ;) ). This applet is still under alpha release which means many things are still to be changed but you can enjoy it for the time being with its cool features.

DPMagnifier Alpha Screen shot

Click here to visit this applet!

Comments and suggestions are more than welcome! Stay in touch

MSN Messenger Polygamy

Hey friends,

I released today an MSN Messenger Polygamy universal patch which can be used through a website. It’s a Java Applet that reads ur msnmsgr.exe file and edit a certain offset to allow you to login using many MSN Passports simultaneously…

MSN Messenger Polygamy

Screenshot:

MSN Messenger Polygamy Screenshot

World Cup MSN Messenger Addon

Hey friends,

I developed a small addon that updates scores of current World Cup matches, and displays them in your MSN Messenger Personnal Message (PSM)…

World Cup MSN Messenger Addon BalloonTip Screenshot

Make sure u give it a shot!

World Cup MSN Messenger Addon

btw, the .Net Framework is required to be able to run it! so download it if the program did not run :)


See ya


Hola amigos,He programado un pequeño addon que actualiza tu mensaje personal con los resultados del Mundial de Fútbol y te lo actualiza regularmente.Captura/Imagen del addon

World Cup MSN Messenger Addon Screen Shot (Spanish)


World Cup MSN Messenger Addon (Spanish)

Nota: necesitas el .Net Framework para que te funcione correctamente, si no lo descargas el programa no te funcionará

Nos vemos

VB.NET Addin Implementation

Since there isn’t actually a vb.net addin implementation available out there, i decided to give you a commented sample, here we go :

Imports System
Imports Microsoft.Messenger

Public Class MAR Implements IMessengerAddIn

    Private WithEvents Mess As MessengerClient

        Public Sub Initialize(ByVal messenger As Microsoft.Messenger.MessengerClient) Implements Microsoft.Messenger.IMessengerAddIn.Initialize
            Mess = messenger //Set The Object

            messenger.AddInProperties.Creator = "Mario Achkar"
            messenger.AddInProperties.Description = "MAR UNofficial Messenger Addin"
            messenger.AddInProperties.FriendlyName = "Mario's Addin Beta 1.0"
        End Sub

        Private Sub Mess_IncomingTextMessage(ByVal sender As Object, ByVal e As Microsoft.Messenger.IncomingTextMessageEventArgs) Handles Mess.IncomingTextMessage

            If (Mess.LocalUser.Status = UserStatus.Away) then
	        Mess.SendTextMessage(String.Format("I'm Away {0} ({1}) - Please Leave A Message!", e.UserFrom.Email, e.UserFrom.FriendlyName), e.UserFrom)
	    End if
        End Sub

Quite Easy Huh? Enjoy! Wanna Try An Already Made Addin? Click Here