This is a discussion on [Request]How to make an Account Generator within the General Programming & Reversing forums, part of the Programming & Reversing category; Originally Posted by Innovation
I'm going to try to explain this to you as explicitly as I can. Don't expect ...
Note: The two links above were the top two results of [Only Registered and Activated Users Can See Links. Click Here To Register...].
Thanks At least someone is willing to help.
Originally Posted by frickfrack
Why would anyone want to help you...you clearly have no desire or drive to learn how to code...yet you want OTHER people to do the majority of the work so you can throw it all together in a messy pile and give the person who did help some credit and take your "rightfully" deserved credit for the hard work of compiling and uploading it..."I have a bad memory so whats the point of wasteing time?" C++ is one of the easiest codes to learn...i have the worlds worse memory and i have learned quite a bit with a little thing called paying attention...people who come on here asking for handouts on codes are no better than the people going " phr33 hAx pl0x??? i h4z r3c0nz lollzzz...stop being lazy and if you WANT something DO IT YOURSELF.
I prefer Visual Basic over C++, Plus, I may have a bad memory, but I'm still willing to learn. Also, if its so easy, then why don't you make one?
WebRequest isn't going to do everything he wants. There are functions in the WebBrowser component that can do everything, however.
Yeah, I know. I'm trying to figure it out, I cant use trash mail because that the e-mail is invalid x.x So I'm going to see if I can use live mail or something else.
Why is everyone making a big deal outta this? Just some one can tell me the codes and the i'm done. No big deal...
If someone just gives you the code, you learn nothing.
Also, judging by your picture, where it says "Where I Put Links", Im guessing that you either know nothing about Visual Basic, or you just started. If you just started, you should start with something easier.
-To "Put links" you can use [Only Registered and Activated Users Can See Links. Click Here To Register...] to open a website. For example,
Code:
Process.Start("http://gamekiller.net")
-Would "Insert Info" and "Generate!" do the same thing?
-It would be hard to "Go To Mail!"? What if they used a email that was Me@MyWebsite.com?
Why dont i make one? because im LEARNING i never said i knew alot about it...but i take notes and TRY before i ask stupid questions...
Originally Posted by combat11
Thanks At least someone is willing to help.
I prefer Visual Basic over C++, Plus, I may have a bad memory, but I'm still willing to learn. Also, if its so easy, then why don't you make one?
One more thing show me where i said it was easy to do what your attempting? because i read over my post and not once saw a SINGLE place that SAID it was EASY. Read my damn post before responding.
If someone just gives you the code, you learn nothing.
Also, judging by your picture, where it says "Where I Put Links", Im guessing that you either know nothing about Visual Basic, or you just started. If you just started, you should start with something easier.
-To "Put links" you can use [Only Registered and Activated Users Can See Links. Click Here To Register...] to open a website. For example,
Code:
Process.Start("http://gamekiller.net")
-Would "Insert Info" and "Generate!" do the same thing?
-It would be hard to "Go To Mail!"? What if they used a email that was Me@MyWebsite.com?
I know how to put links, I just blocked them out with paint. (It was just my youtube so far)
Alos I've beed coding in VB 6 for awhile now, i made a notepad, a simple program called clicker and i make song lyerics (A program that lets you copy lyrics and use them for making a msic vid or just singing along ) too, and I just started vb 2008. So I know a little more than you think.
Off Topic: I'm surprised you don't make hacks like chams for combat arms. (I'm not sure if you can make hacks with vb) but good job on your hack-pack. (The aimbot didn't work for me And yeah, i know how to use the colors.)
Alos I've beed coding in VB 6 for awhile now, i made a notepad, a simple program called clicker and i make song lyerics (A program that lets you copy lyrics and use them for making a msic vid or just singing along ) too, and I just started vb 2008. So I know a little more than you think.
The Common VB/VB.NET Notepad is just a TextBox with a few Buttons. Not really useful. ALSO, VB6/VB 2008 is NOT a programming language, its an IDE.
VB6 = Visual Basic
VB 2008 = Visual Basic .NET
Why would anyone want to help you...you clearly have no desire or drive to learn how to code...yet you want OTHER people to do the majority of the work so you can throw it all together in a messy pile and give the person who did help some credit and take your "rightfully" deserved credit for the hard work of compiling and uploading it..."I have a bad memory so whats the point of wasteing time?" C++ is one of the easiest codes to learn...i have the worlds worse memory and i have learned quite a bit with a little thing called paying attention...people who come on here asking for handouts on codes are no better than the people going " phr33 hAx pl0x??? i h4z r3c0nz lollzzz...stop being lazy and if you WANT something DO IT YOURSELF.
This and the others above are included. Grow up, stop spamming. He doesn't need more than one person to tell him he's being lazy and isn't make sufficient effort to create something his self and learn a language for something he's creating. Leave it at that. It's not needed for 5-6 people to say the same thing over and over.
The Common VB/VB.NET Notepad is just a TextBox with a few Buttons. Not really useful. ALSO, VB6/VB 2008 is NOT a programming language, its an IDE.
VB6 = Visual Basic
VB 2008 = Visual Basic .NET
Yeah, ik, but i put like a save button and a font button. So its not just a txt box with like exit, fontsize = 48 and font "Comic Sans MS". But to move on with the account gen, I can't find a simple mail service that it will let you use. 10 min mail don't work, trash mail don't work, and the 1 u use for ur gen doesn't work either.
You can stuff a web browser into a Visual Basic application, but you don't know how to work a randomizer?
Make an array of characters for anything that requires a string and then create a random integer for each element in the array. See was that so hard to think of?
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSubmit.Click
If WebBrowser1.ReadyState = WebBrowserReadyState.Complete Then
WebBrowser1.Document.All("firstname").SetAttribute("value", txtFirstname.Text)
WebBrowser1.Document.All("lastname").SetAttribute("value", txtLastname.Text)
WebBrowser1.Document.All("reg_email__").SetAttribute("value", txtEmail.Text)
WebBrowser1.Document.All("reg_passwd__").SetAttribute("value", txtPass.Text)
WebBrowser1.Document.All("sex").SetAttribute("value", MorF)
WebBrowser1.Document.All("birthday_month").SetAttribute("value", txtMonth.Text)
WebBrowser1.Document.All("birthday_day").SetAttribute("value", txtDay.Text)
WebBrowser1.Document.All("birthday_year").SetAttribute("value", txtYear.Text)
Else
MsgBox("Please try again in a few moments.", MsgBoxStyle.Information, "Info")
End If
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
cmbSex.Items.Add("Select Sex:")
cmbSex.Items.Add("Female")
cmbSex.Items.Add("Male")
End Sub
Private Sub cmbSex_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmbSex.SelectedIndexChanged
Select Case cmbSex.Text
Case "Select Sex:"
MsgBox("Please select your sex.", MsgBoxStyle.Information, "Info")
Case "Female"
MorF = 1
Case "Male"
MorF = 2
Case Else
MsgBox("Please select your sex.", MsgBoxStyle.Information, "Info")
End Select
End Sub
Use whatever you need.
Doesn't bypass captcha. (I tried to call the captcha but facebook hides the link.)