Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub Huh()
Dim var
Dim oRange As Word.Range
Dim i As Integer
Dim ListAscii As String
Set oRange = Selection.Range
i = Len(Selection.Text)
For var = 1 To i
ListAscii = Asc(oRange.Characters.Item(i - (var - 1))) _
& " " & ListAscii
Next
Set oRange = Nothing
MsgBox "Selection text is " & Selection.Text & vbCrLf _
& "Length is " & Len(Selection.Text) & " _
characters." & vbCrLf & _
"Using the following ASCII characters" & vbCrLf & _
ListAscii
End Sub