what's wrong with the following:
VB Code:
Public Function Decrypt(text As String) Dim Text2 Text2 = Split(text) text = "" For i = 1 To UBound(Text2) text = text & Chr(Sqr((Text2(i) - 18) / (i + 3))) Next i Decrypt = text End Function
It says tht line 6 has a problem... but the thing is, tht it worked before.. and now it doesn't...





Reply With Quote