Looking for Script Library Sort

Hi everyone - A few years back I had an application I got from somewhere that allowed me to easily sort the subroutines within a script library.

My system was rebuilt and I lost this application…

Anybody have a place I can find something that will do this. I have looked all over the net.

I looked in the sandbox and the one there is different and crashes my system (possibly due to 8.0.1).

Any help on this would be appreciated.

Mike

mferrari@accuride.com

Subject: try tis

I can use the following

Function funSort( myArray As Variant ) As Variant

Dim stVar

If Isempty(myArray) Then

	funSort = myArray

Else

	stVar = {"}+Implode(myArray, {":"})+{"}

	funSort = Evaluate({@Sort(}+stVar+{)})

End If

End Function

Subject: Looking for Script Library Sort - noteshound from Kenneth Haggman

Natively no, but with this product of Kenneth Haggman you can:

http://www.noteshound.com/thetools.html

Or from The view

March/April 2005

Get Your Script Libraries in Order — And Perform Other Extraordinary Feats Using the Combined Power of LotusScript and the Lotus C API

Subject: THANK YOU THANK YOU - the VIEW

Yes yes… pulled that issue… that is exactly what I had, exactly what I lost. Thank you so much.

Subject: Thanks but not what I was looking for.

Thanks for the response.But I was actually looking to sort the library itself… see the following post referencing the VIEW article… that is what I was looking for.