I belive a bug in SortStructuredList()
The MessageRequester isn't shown but debugger and program (itself) is aborted.
Code: Select all
Structure TestStructure
StringNummer.s
EndStructure
NewList EineListe.TestStructure()
Debug "Erstelle..."
For t=100000 To 119999
AddElement(EineListe())
EineListe()\StringNummer=Str(t)
Next
Debug "Start..."
StartTime = ElapsedMilliseconds()
SortStructuredList(EineListe(),2,OffsetOf(TestStructure\StringNummer),#PB_Sort_String)
Debug "ende"
MessageRequester("",Str((ElapsedMilliseconds()-StartTime)/1000))