How to alpha sort a stringgrid on a form on a given column in Delphi?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
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 |
|||
|
|