How do i make a password generator (not random) in vb.net? - how to make letter generator with vb 6.0
I write a program that ask the user the time that a password should be, and many passwords to generate Ex 4 PW 5 characters. I must also be able to change the user, the length and variable-PW # PW to ... Now I need to know how to put all the cards of other numbers. Former AAAA, AAAB, AAAC, AAAD, etc., and so on, until AAA9, AABA, AABB .. I have no idea where to start, and this is the last piece for the program. If anyone can help me to be more than happy to help with something .. You can also send, if it terminates the program.
How To Make Letter Generator With Vb 6.0 How Do I Make A Password Generator (not Random) In Vb.net?
11:48 PM
1 comments:
Password length is not a problem. Whatever (your entry or choose from a list), only the length of the string.
As: strPassword.length = CInt (dropDownListLength.selectedItem))
On the other hand, you want to give a list of acceptable characters, no doubt, thanks to a validation function. It would be something like this [looks 0-9, az, AZ]
Find validator for "regular expression" in VB.net or Web help for details
Hope that helps
Post a Comment