Nov 24, 2003 #1 sbdproj Programmer Joined Sep 22, 2003 Messages 22 Location NL Is there a simple way to sort a filelistbox?
Nov 24, 2003 #2 marcdoyle Technical User Joined Dec 18, 2002 Messages 95 Location GB I thought they were sorted by default.. but you could do it this way, using a listbox to display the contents of a hidden filelistbox for a = 0 to file1.listcount -1 list1.additem file1.filename(a) next a list1.sorted=true Upvote 0 Downvote
I thought they were sorted by default.. but you could do it this way, using a listbox to display the contents of a hidden filelistbox for a = 0 to file1.listcount -1 list1.additem file1.filename(a) next a list1.sorted=true
Nov 24, 2003 Thread starter #3 sbdproj Programmer Joined Sep 22, 2003 Messages 22 Location NL The file listbox is sorted yes that's true, but I want to get it sorted descending and not ascending. I've used a listbox now and that works but I was just wondering if there was another solution with the filelistbox itself. Upvote 0 Downvote
The file listbox is sorted yes that's true, but I want to get it sorted descending and not ascending. I've used a listbox now and that works but I was just wondering if there was another solution with the filelistbox itself.