Huy Phong - moingaymotniemvui.com-huyphong.com
trang chủ | ảnh | phonghtn@gmail.com
Password Generator
Huy Phong1/5/2006

Public Function PasswordGenerator(ByVal lngLength As Long) As String

 
On Error GoTo Err_Proc
 
 Dim iChr As Integer
 Dim c As Long
 Dim strResult As String
 Dim iAsc As String
 
 Randomize Timer

 For c = 1 To lngLength
  
   ' Randomly decide what set of ASCII chars we will use
   iAsc = Int(3 * Rnd + 1)
  
    'Randomly pick a char from the random set
   Select Case iAsc
     Case 1
       iChr = Int((Asc("Z") - Asc("A") + 1) * Rnd + Asc("A"))
     Case 2
       iChr = Int((Asc("z") - Asc("a") + 1) * Rnd + Asc("a"))
     Case 3
       iChr = Int((Asc("9") - Asc("0") + 1) * Rnd + Asc("0"))
     Case Else
       Err.Raise 20000, , "PasswordGenerator has a problem."
   End Select
  
   strResult = strResult & Chr(iChr)
 
 Next c
 
 PasswordGenerator = strResult

End function


Huy Phong
 

Mail to: phonghtn@gmail.com
  • Những bài cũ hơn
  • Tìm kiếm với hàm instr trong ASP (12/7/2005)
  • Đổi owner của các bảng trong SQLServer (12/14/2005)
  • How to Use Windows XP: Setting Up a Network Printer (12/20/2005)
  • Install Network Printer on Windows XP (12/20/2005)
  • Những bài mới hơn
  • Checking valid email function (1/9/2006)
  • How do I get the IDENTITY / AUTONUMBER (1/14/2006)
  • Sử dụng Subquery trong Store Procedure (1/16/2006)
  • Many-to-many selections query (1/17/2006)
  • Để không mất email trong outlook khi cài đặt lại máy (5/3/2006)
  • How to decrease the Size of the Transaction Log in SQL Server 2000 (6/19/2006)
  • Download Source Code HPBlog (8/6/2006)
  • IIS 7 (12/5/2006)
  • Vista (12/6/2006)
  • Tìm kiếm:    Tìm
    Chủ đề khác:
    blog comments powered by Disqus