Delphi XE7 update1 bugs: (Under FMX environment) 18. stringGrid: OnSelectCell event bug: after first triggering this event, once you move your mouse into this column this event will be triggered [No matter you move into visible or invisble area of this column) Drop a stringGrid into a Form, and create 2 column: StringColumn1, StringColumn2, and set RowCount:=100; procedure TForm1.StringGrid1SelectCell(Sender: TObject; const ACol, ARow: Integer; var CanSelect: Boolean); begin if StringGrid1.Columns[acol].Name='StringColumn1' then showmessage( 'StringColumn1'); end;
↧