Option Compare Text
Property Get Trijpb388(Tbl)
Dim I%, J%, Tmp$, ListeKeys()
ListeKeys = Tbl
For I = 0 To UBound(Tbl) - 1
For J = I + 1 To UBound(Tbl)
If ListeKeys(I) > ListeKeys(J) Then
Tmp = ListeKeys(J)
ListeKeys(J) = ListeKeys(I)
ListeKeys(I) = Tmp
End If
Next J
Next I
Trijpb388 = ListeKeys
End Property