Password Generator Code VB Code

Posts 16 of 6 · Page 1 of 1
Password Generator Code VB Code
Hello *MPGH*
I Would Like To Make A Password Generator
But I Need It To Generate 2 Password When You Click Generate
Don't Wory I Gonna Put You In Credits
Thank You
Quote Originally Posted by yoyu333 View Post
Hello *MPGH*
I Would Like To Make A Password Generator
But I Need It To Generate 2 Password When You Click Generate
Don't Wory I Gonna Put You In Credits
Thank You
Actually, i'm not a VB coder, but here is a simple method:
Use an array full with characters like:
array[0] = 'a'
array[1] = 'b'
etc...
With numbers, or anything you want, and random a number from 0 to the length of the array...
Read the value with this number from the array, aaaaannnndddd you got a random character...

I'm C# coder, and we can random letters too, i dont know if it is possible in VB or not...
Good Luck...
Well here is something i quickly snapped up for you:
Code:
        Dim rndnumber As Random
        Dim number As Integer
        rndnumber = New Random
        number = rndnumber.Next(1, 1000000001)
        Label1.Text = number.ToString
This will generate a random number, good luck anyway.
I currently use this on a program i got and it works wonders
Quote Originally Posted by {Banned}**HACKER** View Post
Well here is something i quickly snapped up for you:
Code:
        Dim rndnumber As Random
        Dim number As Integer
        rndnumber = New Random
        number = rndnumber.Next(1, 1000000001)
        Label1.Text = number.ToString

This will generate a random number, good luck anyway.
I currently use this on a program i got and it works wonders
I Need It To Generate Some Thing I Write Like
Some Thing I Put It In It + Thank You
@Hero Close This Please
/solved
Posts 16 of 6 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?