You did not mention the security of encryption you want, Here is a simple substitution scheme. You can change the 7 (and -7) to another number. To use it:
Encrypt:
EncryptedString = EncryptString ("Hello There")
Decrypt:
DecryptedString = EncryptString ("A^eehMa^k^", True)
Function EncryptString(strInput As String, Optional Decrypt As Boolean = False) As String
Dim i As Integer
For i = 1 To Len(strInput)
EncryptString = EncryptString & Chr(Asc(Mid(strInput, i, 1)) + IIf(Decrypt, 7, -7))
Next i
End Function