It's acctually pretty simple...
I took a quick look at it (lolland tuturial) and I did my own yahoo account creator..
(still missing the captcha part)... Its pretty much the same as lollhands but for yahoo and not for nexon passport
Just create a new sub... Write this: (ofc that you can change the textbox/comboB0X/sub names, it doesn't matter)
Code:
Public Sub fillinformation()
WebBrowser1.Document.GetElementById("yahooid").SetAttribute("value", TextBox1.Text)
WebBrowser1.Document.GetElementById("password").SetAttribute("value", TextBox2.Text)
WebBrowser1.Document.GetElementById("passwordconfirm").SetAttribute("value", TextBox3.Text)
WebBrowser1.Document.GetElementById("secquestionanswer").SetAttribute("value", TextBox4.Text)
WebBrowser1.Document.GetElementById("secquestionanswer2").SetAttribute("value", TextBox5.Text)
WebBrowser1.Document.GetElementById("firstname").SetAttribute("value", TextBox6.Text)
WebBrowser1.Document.GetElementById("secondname").SetAttribute("value", TextBox7.Text)
WebBrowser1.Document.GetElementById("dd").SetAttribute("value", TextBox8.Text)
WebBrowser1.Document.GetElementById("yyyy").SetAttribute("value", TextBox9.Text)
WebBrowser1.Document.GetElementById("postalcode").SetAttribute("value", TextBox10.Text)
WebBrowser1.Document.GetElementById("cimg").SetAttribute("value", TextBox11.Text)
WebBrowser1.Document.GetElementById("secquestion").SetAttribute("value", ComboBox1.Text)
WebBrowser1.Document.GetElementById("secquestion2").SetAttribute("value", ComboBox2.Text)
WebBrowser1.Document.GetElementById("gender").SetAttribute("value", ComboBox3.Text)
WebBrowser1.Document.GetElementById("mm").SetAttribute("value", ComboBox4.Text)
WebBrowser1.Document.GetElementById("country").SetAttribute("value", ComboBox5.Text)
End Sub
Then all you have to do is the GUI and the captcha part... Just like in Lollhands post.... add the web browser text boxes and all that is required...
OH! ANd the button ofc xD Almost forgot it xP
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
fillinformation()
End Sub
xD
TheRealOne