ValidChrs = "" ChkValid = "" IsErr = False 'Turn on random Randomize Timer 'Create a six character validation code 'of only letters and numbers For x = 0 to 5 'Lowest number is 48, Highest number is 122 RndNum = Int(Rnd * 74) + 48 GetNum = True 'Eliminate punctuation and characters If RndNum >57 AND RndNum < 65 Then x = x - 1 GetNum = False End if 'Eliminate more punctuation and characters If RndNum > 90 AND RndNum < 97 Then x = x - 1 GetNum = False End if If GetNum = True Then ValidChrs =...