type
TMyForm= class(TForm)
sg : TStringGrid;
imgSortIt: TImage;
...
procedure imgSortItClick(Sender: TObject);
private
{ Private declarations }
// sortIt: TFMXObjectSortCompare;
function sortIt(item1, item2: TFmxObject): Integer;
public
{ Public declarations }
end;
var
frm: TMyForm;
implementation
{$R *.fmx}
procedure TMyForm.imgSortItClick(Sender: TObject);
begin
sg.Sort(???);
...
Hi,
I know how to switch rows to manually sort a grid...
But as a TSTringGrid has a procedure Sort, I try to use it with my own comparison function with this procedure...
How should I structure the type/function to make it work? Actually, I get:
E2009 Incompatible types: 'regular procedure and method pointer'- or it compiles with a function declared like this:
sortIt: TFMXObjectSortCompare;but how to implement the code to sort like I wish?
Thanks for your help.