Sub Process_Globals
Type ol(nameOfFile As String,value As Int)
End Sub
Sub AppStart (Form1 As Form, Args() As String)
Dim l As List
l.Initialize
l.add(Createol("Module 0",0))
l.add(Createol("Module 1",1))
l.add(Createol("Module 2",2))
l.add(Createol("Module 3",3))
l.add(Createol("Module 12",12))
l.SortType("value",True)
End Sub
Public Sub Createol (nameOfFile As String, value As Int) As ol
Dim t1 As ol
t1.Initialize
t1.nameOfFile = nameOfFile
t1.value = value
Return t1
End Sub