show/hide this revision's text 3 changed concat operator from + to &
Function RandomString(cb As Integer) As String

    Randomize
    Dim rgch As String
    rgch = "abcdefghijklmnopqrstuvwxyz"
    rgch = rgch + & UCase(rgch) + & "0123456789"

    Dim i As Long
    For i = 1 To cb
        RandomString = RandomString + & Mid$(rgch, Int(Rnd() * Len(rgch) + 1), 1)
    Next

End Function

Please be aware that the built-in random number generator is not cryprographically secure so a function like this should not be used to generate passwords.

show/hide this revision's text 2 allow strings > 32K
Function RandomString(cb As Integer) As String

    Randomize
    Dim rgch As String
    rgch = "abcdefghijklmnopqrstuvwxyz"
    rgch = rgch + UCase(rgch) + "0123456789"

    Dim i As Integer
    Long
    For i = 1 To cb
        RandomString = RandomString + Mid$(rgch, Int(Rnd() * Len(rgch) + 1), 1)
    Next

End Function

Please be aware that the built-in random number generator is not cryprographically secure so a function like this should not be used to generate passwords.

show/hide this revision's text 1
Function RandomString(cb As Integer) As String

    Randomize
    Dim rgch As String
    rgch = "abcdefghijklmnopqrstuvwxyz"
    rgch = rgch + UCase(rgch) + "0123456789"

    Dim i As Integer
    For i = 1 To cb
        RandomString = RandomString + Mid$(rgch, Int(Rnd() * Len(rgch) + 1), 1)
    Next

End Function

Please be aware that the built-in random number generator is not cryprographically secure so a function like this should not be used to generate passwords.