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



 
HomeHome  Latest imagesLatest images  SearchSearch  RegisterRegister  Log inLog in  

 

 Password Generator

Go down 
2 posters
AuthorMessage
Nilef




Posts : 11
Join date : 2008-07-19

Password Generator Empty
PostSubject: Password Generator   Password Generator Icon_minitimeSat Jul 19, 2008 6:54 am

This is a neat little code that will generate a random password


Code:
Dim iSel As Integer
        'clear old passwords
        If Reset = True Then
            psw = ""
        End If
        For i = 1 To Lenght
            'create random numbers that will represent
            'each : upercase,lowercase,numbers

            CNT(0) = rNum.Next(48, 57) 'Numbers  1 to 9
            CNT(1) = rLowerCase.Next(65, 90) ' Lowercase Characters
            CNT(2) = rUpperCase.Next(97, 122) ' Uppercase Characters
            'put characters in strings
            Char_Sel(0) = System.Convert.ToChar(CNT(0)).ToString
            Char_Sel(1) = System.Convert.ToChar(CNT(1)).ToString
            Char_Sel(2) = System.Convert.ToChar(CNT(2)).ToString

            'pick one of the three above for a character At Random
            iSel = RandomSelect.Next(0, 3)
            'colect all characters generated through the loop
            psw &= Char_Sel(iSel)

            ' reset  with new password
            If Reset = True Then

                psw.Replace(psw, Char_Sel(iSel))
            End If

        Next
        Return psw


    End Function
Back to top Go down
Biohazard
Admin
Biohazard


Posts : 13
Join date : 2008-07-17

Password Generator Empty
PostSubject: Re: Password Generator   Password Generator Icon_minitimeSat Jul 19, 2008 7:07 am

I don't understand it, Where does the generated password go?
Back to top Go down
http://vbforums.omgforum.net
Nilef




Posts : 11
Join date : 2008-07-19

Password Generator Empty
PostSubject: Re: Password Generator   Password Generator Icon_minitimeSat Jul 19, 2008 7:10 am

I think it appears in the box it was activated in. I found it in my little code library, never used it before, but im going to try and make a program with it.
Back to top Go down
Biohazard
Admin
Biohazard


Posts : 13
Join date : 2008-07-17

Password Generator Empty
PostSubject: Re: Password Generator   Password Generator Icon_minitimeSat Jul 19, 2008 7:20 am

Good luck and post here when your done. lol!
Back to top Go down
http://vbforums.omgforum.net
Nilef




Posts : 11
Join date : 2008-07-19

Password Generator Empty
PostSubject: Re: Password Generator   Password Generator Icon_minitimeSat Jul 19, 2008 7:21 am

Ok, will do
Back to top Go down
Sponsored content





Password Generator Empty
PostSubject: Re: Password Generator   Password Generator Icon_minitime

Back to top Go down
 
Password Generator
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
VB Forums :: General VB Discussion :: VB Source Codes-
Jump to: