MSN Nickname Changer

Heres your chance to share your own tutorials with the community. Just post them on here. If your lucky they may even be posted on the main site.
2 posts Page 1 of 1
Contributors
User avatar
MrAlicard
VIP - Donator
VIP - Donator
Posts: 54
Joined: Thu Aug 05, 2010 4:08 pm

MSN Nickname Changer
MrAlicard
First Go to Project -> Add Reference -> Click COM -> Click Messenger API Type Libary -> OK

Include:
  • 1 TextBox
    1 Button
Code: Select all
Dim mess As New MessengerAPI.Messenger

   Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
'Opens up options for messenger
           mess.OptionsPages(0, MessengerAPI.MOPTIONPAGE.MOPT_GENERAL_PAGE)
'send new nickname
            SendKeys.Send(Textbox1.Text)
'double enter (clicks "ok") to make sure the frame closes
            SendKeys.Send("{enter}")
            SendKeys.Send("{enter}")
'messagebox to verify the nickname has been changed
            MsgBox("Nickname changed into " + Textbox1.Text, MsgBoxStyle.Information, "Nickname Changed")
User avatar
MrAksel
C# Coder
C# Coder
Posts: 1758
Joined: Fri Mar 26, 2010 12:27 pm

Re: MSN Nickname Changer
MrAksel
Everyone need to declare the variable mess as 'IMessengerWindow', i think its that
LMAOSHMSFOAIDMT
Laughing my a** of so hard my sombrero fell off and I dropped my taco lmao;


Over 30 projects with source code!
Please give reputation to helpful members!

Image
Image
2 posts Page 1 of 1
Return to “Tutorials”