hi everyone. can i know how to encrypt the password using different addition.
example: 1st char +1 2nd char +5 3rd char +2 etc. i have mine done,but i only know to use hard coded password encrypt method. this is my code.
Dim Password As String
Dim i As Integer
Password = txtConfirmPwd.Text
Result = vbNullString
For i = 1 To Len(Password)
Result = Result & Chr(Asc(Mid(Password, i, 1)) + 1)
Next
im using vb 2005(express).sorry for my bad english.