Facebook Updater Program : )

Please post all your completed software applications in here. This is for full software which you have created and wish to release and share with everyone.
13 posts Page 1 of 2
User avatar
lesan101
Top Poster
Top Poster
Posts: 193
Joined: Tue Jun 29, 2010 8:10 am

Facebook Updater Program : )
lesan101
Ahhhh.. Faebook updater complete : )
Code: Select all
Option Explicit On
Public Class Form1
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        WebBrowser1.Document.GetElementById("email").SetAttribute("value", TextBox1.Text)
        WebBrowser1.Document.GetElementById("pass").SetAttribute("value", TextBox2.Text)
        WebBrowser1.Document.GetElementById("login").InvokeMember("click")
        Label2.Visible = True
        Me.Height = 377
    End Sub
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        WebBrowser1.Navigate("https://login.facebook.com/login.php?login_")
        Button2.Enabled = False
        Button3.Enabled = False
        Button1.Enabled = False
        TextBox3.Enabled = False
    End Sub
    Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
        TextBox4.Text = WebBrowser1.Url.AbsolutePath
        If TextBox4.Text.Contains("attempt=1") Then
            MsgBox("wrong password")
        End If
        If TextBox4.Text.Contains("home.php") Then
            Label1.Text = WebBrowser1.Document.GetElementById("navAccountName").InnerText
            TextBox1.Visible = False
            TextBox2.Visible = False
            Button1.Visible = False
            PictureBox1.Visible = True
            TextBox3.Enabled = True
            Label5.Visible = False
            Label4.Visible = False
        End If
    End Sub
    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        WebBrowser1.Document.GetElementById("status").SetAttribute("value", TextBox3.Text)
        WebBrowser1.Document.GetElementById("status").InvokeMember("focus")
        Button3.Enabled = True
    End Sub
    Private Sub Button3_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
        Dim Facebookshare As HtmlElementCollection = WebBrowser1.Document.All
        For Each lesanElement As HtmlElement In Facebookshare
            If lesanElement.GetAttribute("value") = "Share" Then
                lesanElement.InvokeMember("click")
            End If
        Next
        MsgBox("Status message Successful", MsgBoxStyle.DefaultButton1, "DONE")
        If MsgBoxResult.Ok Then
            Me.Close()
        End If
    End Sub
    Private Sub LinkLabel1_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked
        MsgBox("Login to facebook." + vbNewLine + "Write your status message." + vbNewLine + "Press Enter Status" + vbNewLine + "Press Share", MsgBoxStyle.DefaultButton1, "Help Box")
    End Sub
    Private Sub LinkLabel2_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel2.LinkClicked
        Form2.Show()
    End Sub
    Private Sub TextBox3_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox3.TextChanged
        If TextBox3.Text = "" Then
            Button2.Enabled = False
        Else
            Button2.Enabled = True
        End If
    End Sub
    Private Sub TextBox2_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox2.TextChanged
        If TextBox2.Text = "" Then
            Button1.Enabled = False
        Else
            Button1.Enabled = True
        End If
    End Sub
End Class
You do not have the required permissions to view the files attached to this post.
Last edited by lesan101 on Sun Nov 21, 2010 8:23 am, edited 2 times in total.
Image
User avatar
Axel
Coding God
Coding God
Posts: 1928
Joined: Sun Jun 27, 2010 9:15 pm

Re: Facebook Updater Program : )
Axel
so what is this doing ?
http://vagex.com/?ref=25000
User avatar
lesan101
Top Poster
Top Poster
Posts: 193
Joined: Tue Jun 29, 2010 8:10 am

Re: Facebook Updater Program : )
lesan101
YourSocksRoxx wrote:
so what is this doing ?
Correction: so what does this do?

It updates your facebook status. but i made a program out of it. : )
Image
User avatar
Brown
New Member
New Member
Posts: 21
Joined: Thu Jun 10, 2010 3:05 am

Re: Facebook Updater Program : )
Brown
Awsome!
Image
GoodGuy17
Coding God
Coding God
Posts: 1610
Joined: Mon Sep 07, 2009 12:25 am

Re: Facebook Updater Program : )
GoodGuy17
HEY! I USED THIS, AND LOGGED INTO FACEBOOK TODAY, AND IT SAID MY ACCOUNT WAS USED FROM SOMEWHERE. I know this was a coincidence. DO USE. :) You can take the code down now, I checked it.
Last edited by GoodGuy17 on Sun Nov 21, 2010 3:26 pm, edited 1 time in total.
User avatar
lesan101
Top Poster
Top Poster
Posts: 193
Joined: Tue Jun 29, 2010 8:10 am

Re: Facebook Updater Program : )
lesan101
dude. are you kidding me -___-

fml, i'll upload code now
Image
User avatar
Livengood
Serious Programmer
Serious Programmer
Posts: 445
Joined: Tue Feb 16, 2010 6:24 am

Re: Facebook Updater Program : )
Livengood
GoodGuy17 wrote:
HEY! I USED THIS, AND LOGGED INTO FACEBOOK TODAY, AND IT SAID MY ACCOUNT WAS USED FROM SOMEWHERE. I don't know if this was a coincidence, but I think NOT! DO NOT USE.
lol what?
Image
User avatar
Codex
Coding God
Coding God
Posts: 2028
Joined: Wed Mar 31, 2010 5:50 pm

Re: Facebook Updater Program : )
Codex
Very easy to do, but good job cooll;
This isn't the best way because what if facebook changes like the id's and stuff like that, it will not work.
We shall let the revolution begin.. the revolution for freedom, freedom against censorship. We shall fight in the fields and in the streets, we shall fight in the hills; we shall never surrender
Lewis
Coding God
Coding God
Posts: 1564
Joined: Sun Dec 20, 2009 2:12 pm

Re: Facebook Updater Program : )
Lewis
haha, I doubt it sends him the email, But yeah. though i'm not one that uses programs to puplish status's. Unless you could make this for my phone :P
Image
User avatar
NecroPhis
VIP - Donator
VIP - Donator
Posts: 345
Joined: Sun Aug 08, 2010 1:14 pm

Re: Facebook Updater Program : )
NecroPhis
nice pogram :D
thanx
Image
13 posts Page 1 of 2
Return to “Full Software”