Team Elite
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Team Elite

Team Elite Recruiting
 
HomeLatest imagesRegisterLog in

 

 [TuT] How to make a Hotmail Account Creator![TuT]

Go down 
AuthorMessage
ShadowTech
Admin



Posts : 3
Join date : 2011-09-13

[TuT] How to make a Hotmail Account Creator![TuT] Empty
PostSubject: [TuT] How to make a Hotmail Account Creator![TuT]   [TuT] How to make a Hotmail Account Creator![TuT] I_icon_minitimeTue Sep 13, 2011 5:30 am

I will show you little parts on how to make a Hotmail account creator!
:Note, You can use your functions for generating this stuff I am using TextBox's as Examples.

The URL :
Code:
[You must be registered and logged in to see this link.]
The email :
Code:
Webbrowser1.Document.GetElementById("imembernamelive").SetAttribute("value", TextBox1.Text)
Password And Confirm:
Code:
Webbrowser1.Document.GetElementById("iPwd").SetAttribute("value", TextBox2.Text)
Webbrowser1.Document.GetElementById("iRetypePwd").SetAttribute("value", TextBox2.Text)
Alt E-mail :
[code]
Webbrowser1.Document.GetElementById("iAltEmail").SetAttribute("value", TextBox3.Text & "@hotmail.com")
First Name:
Code:
Webbrowser1.Document.GetElementById("iFirstName").SetAttribute("value", TextBox4.Text)
Last Name :
Code:
Webbrowser1.Document.GetElementById("iLastName").SetAttribute("value", TextBox5.Text)
Country/Region :
Code:
I cant give away to much on these.. So google it yourself.
Google is your friend! Smile
State:
Code:
Same as above :\
Postal Code:
Code:
Webbrowser1.Document.GetElementById("iZipCode").SetAttribute("value", TextBox6.Text)
Gender Male:
Code:
Webbrowser1.Document.GetElementById("iGendermale").InvokeMember("click")
Birth Year:
Code:
Webbrowser1.Document.GetElementById("iBirthYear").SetAttribute("value", TextBox7.Text)

I'm not doing the Captcha for you as read below.

I accept/Sign-Up Button :
[code]
Dim allelements As HtmlElementCollection = WebBrowser1.Document.All

For Each webpageelement As HtmlElement In allelements

If webpageelement.GetAttribute("value") = "I accept" Then

webpageelement.InvokeMember("click")

End If

Next

Thanks for reading.. The reason I Didn't want to do all of it because then it would be a WHOLE C & P Thread and you learn nothing!

And yes.. You can use your Generate functions.. Just Replace the TextBox Part to your function Smile!
Back to top Go down
 
[TuT] How to make a Hotmail Account Creator![TuT]
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
Team Elite :: Coding :: Visual Basic and .NET Framework-
Jump to: