dhowells
20th October 2010, 22:36
I have a string array that I'm using the qss.sort to sort it. When it does the sort (strings) in ascending order, it places all the values at the bottom. So say my array is 100 elements and 20 are filled. They will be in ascending order starting at element 80; thru element 100. Below are the basic commands / definitions.
long sort.def(1,4)
qss.start(sort.def, 1, 1)
qss.way(sort.def, 1, QSS.UP) | Ascending
qss.type(sort.def, 1, DB.STRING)
qss.length(sort.def, 1, 20)
e = set.mem(master.item.ary, "") |does same thing w/wo this line
...fill first x elements
e = qss.sort(master.item.ary, sort.def)
long sort.def(1,4)
qss.start(sort.def, 1, 1)
qss.way(sort.def, 1, QSS.UP) | Ascending
qss.type(sort.def, 1, DB.STRING)
qss.length(sort.def, 1, 20)
e = set.mem(master.item.ary, "") |does same thing w/wo this line
...fill first x elements
e = qss.sort(master.item.ary, sort.def)