
Is there a way to change the sorting order of the list of opened documents displayed in the OpenDocumentsMenu? Currently it appears to sort things alphabetically with using the default string sort ordering. The main issue with that is that numeric document titles don't sort as expected - instead of 'Page 1', 'Page 2', ... 'Page 10', 'Page 11' you get 'Page 1', 'Page 10', 'Page 11', 'Page 2'... If the list needs to be sorted it is probably more correct to use StrCmpLogicalW to do the comparison.
In my case I don't want the list to be sorted at all - I'd like the list to display in the order that the pages have been added. Is that possible? If they have to be sorted I'd like to be able to sort using StrCmpLogicalW.
In my case I don't want the list to be sorted at all - I'd like the list to display in the order that the pages have been added. Is that possible? If they have to be sorted I'd like to be able to sort using StrCmpLogicalW.