VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Effective and Very Simple program for encrypt the text password . For that u need a Textbox named

by SACHIN SEHGAL (1 Submission)
Category: Encryption
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Wed 14th June 2000
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Effective and Very Simple program for encrypt the text password . For that u need a Textbox named "pass"

Rate Effective and Very Simple program for encrypt the text password . For that u need a Textbox named



Dim login, pass1 As String
Dim passch(8) As String
Dim ctr

        pass1 = Len(pass.Text)
        ctr = 1
             Do While ctr <= pass1
             passch(ctr) = Mid(pass.Text, ctr, 1)
             passtemp = Asc(passch(ctr)) + 17
             passnew = CStr(passnew) & Chr(passtemp)
             passtemp = ""
             ctr = ctr + 1
            Loop
            MsgBox "Your Password after encrypted is " passnew

Download this snippet    Add to My Saved Code

Effective and Very Simple program for encrypt the text password . For that u need a Textbox named Comments

No comments have been posted about Effective and Very Simple program for encrypt the text password . For that u need a Textbox named . Why not be the first to post a comment about Effective and Very Simple program for encrypt the text password . For that u need a Textbox named .

Post your comment

Subject:
Message:
0/1000 characters