How to alpha sort a stringgrid on a form on a given column in Delphi?
feedback
|
|
There's no built in sort facility for TStringGrid, so you need to roll your own. Personally, I use some general purpose sorting code that can sort anything provided a compare function and an exchange function:
You could look at how Generics.Collections.TArray.Quicksort is implemented to see how to fill in the missing code above. The essential point is that your | |||
|
feedback
|