Im attempting to make a Facebook app, but i cant seem to find the name to the status update box and the post button, if someone could help me that would be great. this is what i have so far. i do have the name to the [CODE]WebBrowser1.Document.GetElementById("xhpc_message_text").SetAttribute("value", KryptonRichTextBox1.Text)[CODE] but it some reason wont work. im coding in visual studio.

Code:
Public Class Form11

    Private Sub KryptonButton1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles KryptonButton1.Click
        WebBrowser1.Document.GetElementById("email").SetAttribute("value", KryptonTextBox1.Text)
        WebBrowser1.Document.GetElementById("pass").SetAttribute("value", KryptonTextBox2.Text)

        WebBrowser1.Document.GetElementById("loginbutton").InvokeMember("click")
    End Sub

    Private Sub KryptonButton2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles KryptonButton2.Click
        WebBrowser1.Document.GetElementById("").SetAttribute("value", KryptonRichTextBox1.Text)
        WebBrowser1.Document.GetElementById("").InvokeMember("click")
    End Sub
End Class