{ TB>> I am having a bit of difficulty figuring out how to TB>> sort an array of records by numerical or alphabetical order. TB>> Here's an example of my record set up: This a 'small' example of record quicksort. } Program SortArrayOfRec; uses Crt; type Str34=string[34]; Rec=Record Name:Str34; Number1, Number2 : LongInt; end; type CmpMinFunc=Function(var r1,r2:Rec):boolean; var RecArray:array[1..1400] of Rec; { Compare functions } Function Name(var r1,r2:Rec):boolean; far; begin Name:=r1.Namej; if l