sharky12345
Well-known Member
- Joined
- Aug 5, 2010
- Messages
- 3,422
- Office Version
- 2016
- Platform
- Windows
I'm using this to convert a string to ascii;
Can someone show me how to convert it back to string please?
Code:
Public Function asciien(s As String) As String' Returns the string to its respective ascii numbers
Dim i As Integer
For i = 1 To Len(s)
asciien = asciien & CStr(Asc(Mid(s, i, 1)))
Next i
End Function
Can someone show me how to convert it back to string please?