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 comx
-1 textboxes
-1 button
-1 webbrowser
-1 radiobutton
-1 ceckbox
then your form should look like this
then you need a website
i take https://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
then the comCode:WebBrowser1.Document.GetElementById("txtAccountId").SetAttribute("value", TextBox1.Text)x this part is a little bit harder
first add the months to your comx
and then search for id="ddlBirthMonth"
then double click on your comx 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
with the checkbox its the same just another id (id="chkTermofuse")Code:WebBrowser1.Document.GetElementById("rbGenderMale").InvokeMember("click") or for female WebBrowser1.Document.GetElementById("rbGenderFemale").InvokeMember("click")
and last the buttonCode:WebBrowser1.Document.GetElementById("chkTermofuse").InvokeMember("click")
its the same code
id="btnSubmit"
i think thats allCode:WebBrowser1.Document.GetElementById("btnSubmit").InvokeMember("click")
hope you enjoyed and sorry for my bad english
if you have a question ask me
Last edited by Kudi; 03-06-2011 at 09:30 AM.
Good Job, But maybe on Tut Section or Snippet Vault?

561
Next time, post it in the Tutorials section + give credits if you leeched it. If you didn't, nice job.![]()
Former Middleman
07-07-2011 - 09-13-2011
Skype: mpgh.flash
MSN: mpgh.flash@msn.com
“I don't care if you're black, white, straight, bisexual, gay, lesbian, short, tall, fat, skinny, rich or poor. If you're nice to me, I'll be nice to you. Simple as that.”
- Eminem
Kudi (03-06-2011)

918
Doesn't belong in either the Snippets Vault nor the tut section. I'm keeping all VB tuts in the VB section because that's where they belong until the VB section gets its own personal tutorial subsection. Also, it's not a "snippet", as it's too long and really is a project.
Looks good, a good level of explanation rather than "copy and paste this then compile" I like it. Keep it up.
You can win the rat race,Originally Posted by Jeremy S. Anderson
But you're still nothing but a fucking RAT.
++Latest Projects++
[Open Source] Injection Library
Simple PE Cipher
FilthyHooker - Simple Hooking Class
CLR Injector - Inject .NET dlls with ease
Simple Injection - An in-depth look
MPGH's .NET SDK
eJect - Simple Injector
Basic PE Explorer (BETA)
Hassan (03-06-2011),Kudi (03-06-2011),Lyoto Machida (03-06-2011)
Very Good Effort. Naice![]()
"Kudi"
Leeching to a VB section near![]()

918
You can win the rat race,Originally Posted by Jeremy S. Anderson
But you're still nothing but a fucking RAT.
++Latest Projects++
[Open Source] Injection Library
Simple PE Cipher
FilthyHooker - Simple Hooking Class
CLR Injector - Inject .NET dlls with ease
Simple Injection - An in-depth look
MPGH's .NET SDK
eJect - Simple Injector
Basic PE Explorer (BETA)
AceKill3r (03-07-2011)

918
He made it a lot more complicated than it needed to be![]()
You can win the rat race,Originally Posted by Jeremy S. Anderson
But you're still nothing but a fucking RAT.
++Latest Projects++
[Open Source] Injection Library
Simple PE Cipher
FilthyHooker - Simple Hooking Class
CLR Injector - Inject .NET dlls with ease
Simple Injection - An in-depth look
MPGH's .NET SDK
eJect - Simple Injector
Basic PE Explorer (BETA)

3438
I'm pretty sure Lolland wrote something like this already....
EDIT - Found it: https://www.mpgh.net/forum/33-visual-...generator.html
Donate:
BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9
Handy Tools/Hacks:
Extreme Injector v3.7.3
A powerful and advanced injector in a simple GUI.
Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!
Minion Since: 13th January 2011
Moderator Since: 6th May 2011
Global Moderator Since: 29th April 2012
Super User/Unknown Since: 23rd July 2013
'Game Hacking' Team Since: 30th July 2013
--My Art--
[Roxas - Pixel Art, WIP]
[Natsu - Drawn]
[Natsu - Coloured]
All drawings are coloured using Photoshop.
--Gifts--
[Kyle]
Niceim going to try this for a other game
![]()

918
You can win the rat race,Originally Posted by Jeremy S. Anderson
But you're still nothing but a fucking RAT.
++Latest Projects++
[Open Source] Injection Library
Simple PE Cipher
FilthyHooker - Simple Hooking Class
CLR Injector - Inject .NET dlls with ease
Simple Injection - An in-depth look
MPGH's .NET SDK
eJect - Simple Injector
Basic PE Explorer (BETA)
Last edited by cgallagher21; 03-08-2011 at 06:47 PM.