Hello,
What are we gonna do?
-Making an portable msn messenger with visual basic 2008
Where can I download visual basic 2008?
-
Right Here!
What does the source?
-It navigate with the webbrowser to ebuddy. And you can insert the textbox information to the page.
Is it hard?
-Not if you follow the steps!
1. Open op Visual Basic 2008 >> Start New Project >> Name it what ever you like and press ok.
2. Now insert these items:
-Webbrowser [visible = false] [url="http://milan.ebuddy.com/vo7.7.5/start.html"] >> Make it fill the whole form.
-1st Label [text = Email:]
-2nd Label [text = Password:]
-1st Textbox [text = ""] >> Put under or after label1.
-2nd Textbox [text = ""] + [Passwordchar = "*"] >> Put under or after label2.
-Button [text = "Login"] >> Put under second textbox.
3. Double click on the form and copy this code:
Code:
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
WebBrowser1.Document.GetElementById("username").SetAttribute("value", (TextBox1.Text))
WebBrowser1.Document.GetElementById("password").SetAttribute("value", (TextBox2.Text))
WebBrowser1.Document.GetElementById("login_submit").InvokeMember("click")
TextBox1.Visible = False
TextBox2.Visible = False
Label1.Visible = False
Label2.Visible = False
Button1.Visible = False
WebBrowser1.Show()
End Sub
End Class
4. Now skin the form to whatever you like.
Now you can build it. And use it as a portable MSN Messenger!
__________________________________________________ ___________
Project:
Here's The Project link if you want.
Download
__________________________________________________ ___________
Release:
If you want a better skin make it yourslef :tongue:
Here is the release:
Download
__________________________________________________ ___________
If you have a question or if something doesn't work, post it here and I will help you further.
Greetings, Brian