to encrypt:
VB Code:
Public Function Encrypt(text As String) Dim Text2 As String Text2 = "" For i = 1 To Len(text) Text2 = Text2 & " " & Asc(Mid(text, i, 1)) * (i + 3) * Asc(Mid(text, i, 1)) + 18 Next i Encrypt = Text2 End Function
|
Results 1 to 6 of 6
Thread: Decrypt from INI fileThreaded View
|
Click Here to Expand Forum to Full Width |