Dear All,
The result of:
.. is
and I want it to be
It works if I don´t add the numbers as text, but in this case I need to have some text showing in each list item after the number.
Any hints?
Thanks in advance!
The result of:
B4X:
Dim l As List
l.Initialize
l.Add("77 a")
l.Add("88 a")
l.Add("880 a")
l.Add("777 a")
l.Sort(True)
For i = 0 To l.Size - 1
Log (l.Get(i))
Next
.. is
B4X:
77 a
777 a
88 a
880 a
and I want it to be
B4X:
77 a
88 a
777 a
888 a
It works if I don´t add the numbers as text, but in this case I need to have some text showing in each list item after the number.
Any hints?
Thanks in advance!
Last edited: