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.
[blue]Public Function SortString(x As String, Optional bASC As Boolean = True) As String
Dim oAList As Object
Dim thing As Variant
Dim source() As Byte
source = StrConv(x, vbFromUnicode)
Set oAList = CreateObject("System.Collections.ArrayList")
For Each thing In source
oAList.Add thing
Next
oAList.Sort ' Ok, sort it
If bASC Then oAList.Reverse ' reverse it if necessary
For Each thing In oAList
SortString = SortString & Chr$(thing)
Next
End Function[/blue]