Good Day
I have the following VB code that generates a 10 character alphanumeric password. This code works perfectly fine.
However I would like to change the code to include special characters in the password.
The characters are limited to !@#$&*
I have the following VB code that generates a 10 character alphanumeric password. This code works perfectly fine.
However I would like to change the code to include special characters in the password.
The characters are limited to !@#$&*
Code:
Sub TenCharPassword()
Dim i As Integer, c As Integer, n As Integer, pw As String
For i = 1 To 100
pw = ""
For n = 1 To 10
c = Evaluate("=RandBetween(65,100)")
If c > 90 Then c = c