Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var
AOldRow:integer; // Static variable
procedure MyForm.MyGridSelectCell(Sender: TObject;
ACol, ARow: Integer; var CanSelect: Boolean);
begin
if AOldRow <> ARow then
OnRowChange(AOldRow,ARow);
AOldRow := ARow
end;