Contents | Index | < Browse | Browse >
RECSORT %FieldName
This is for DataBase listviews.
It will sort the CURRENT record into a DB listview according to
the given field.
If you have a listview sorted according to (say) the amount, then
if you added a new record, or edited one and changed the amount
then you'd have to sort the whole listview again..
Using this command, you can sort only the record you changed
so it's much faster..
ex:
; use an lv and select the 1st record..
lvuse mygui 1
lvgo first
; change the %amount field of the 1st record..
%amount = 5000
; resort it..
RecSort %amount