first of all i didnt leeched this!!!
hy guys in this tut i show you how to use the "GetElementById" function
you should know the basics of html and visual basic
what we need
-1 com

x
-1 textboxes
-1 button
-1 webbrowser
-1 radiobutton
-1 ceckbox
then your form should look like this
then you need a website
i take
http://passport.nexon.net/Registration/Signup.aspx?nexonTheme=Nexon (this is the site to make a nexon account

)
i just show you some samples not how to create a whole account Creator
then we need the source of the website
first we had to search for id="txtAccountId"
then double click on the textbox and add this code
Code:
WebBrowser1.Document.GetElementById("txtAccountId").SetAttribute("value", TextBox1.Text)
then the com

x this part is a little bit harder
first add the months to your com

x
and then search for id="ddlBirthMonth"
then double click on your com

x and past this code in
Code:
If ComboBox1.SelectedItem = "January" Then
WebBrowser1.Document.GetElementById("ddlBirthMonth").SetAttribute("value", "1")
ElseIf ComboBox1.SelectedItem = "February" Then
WebBrowser1.Document.GetElementById("ddlBirthMonth").SetAttribute("value", "2")
ElseIf ComboBox1.SelectedItem = "March" Then
WebBrowser1.Document.GetElementById("ddlBirthMonth").SetAttribute("value", "3")
ElseIf ComboBox1.SelectedItem = "April" Then
WebBrowser1.Document.GetElementById("ddlBirthMonth").SetAttribute("value", "4")
ElseIf ComboBox1.SelectedItem = "May" Then
WebBrowser1.Document.GetElementById("ddlBirthMonth").SetAttribute("value", "5")
ElseIf ComboBox1.SelectedItem = "June" Then
WebBrowser1.Document.GetElementById("ddlBirthMonth").SetAttribute("value", "6")
ElseIf ComboBox1.SelectedItem = "July" Then
WebBrowser1.Document.GetElementById("ddlBirthMonth").SetAttribute("value", "7")
ElseIf ComboBox1.SelectedItem = "August" Then
WebBrowser1.Document.GetElementById("ddlBirthMonth").SetAttribute("value", "8")
ElseIf ComboBox1.SelectedItem = "September" Then
WebBrowser1.Document.GetElementById("ddlBirthMonth").SetAttribute("value", "9")
ElseIf ComboBox1.SelectedItem = "October" Then
WebBrowser1.Document.GetElementById("ddlBirthMonth").SetAttribute("value", "10")
ElseIf ComboBox1.SelectedItem = "November" Then
WebBrowser1.Document.GetElementById("ddlBirthMonth").SetAttribute("value", "11")
ElseIf ComboBox1.SelectedItem = "December" Then
WebBrowser1.Document.GetElementById("ddlBirthMonth").SetAttribute("value", "12")
End If
and now i show you how to click on a radibutton
search for id="rbGenderMale" or id="rbGenderFemale"

then double click on your radiobutton
and here is the code
Code:
WebBrowser1.Document.GetElementById("rbGenderMale").InvokeMember("click")
or for female
WebBrowser1.Document.GetElementById("rbGenderFemale").InvokeMember("click")
with the checkbox its the same just another id (id="chkTermofuse")
Code:
WebBrowser1.Document.GetElementById("chkTermofuse").InvokeMember("click")
and last the button
its the same code
id="btnSubmit"
Code:
WebBrowser1.Document.GetElementById("btnSubmit").InvokeMember("click")
i think thats all
hope you enjoyed and sorry for my bad english
if you have a question ask me