Download all you need here
Components
[ Delphi ] – Check if a Stringgrid cell is selected
Jun 4th
function IsCellSelected(StringGrid: TStringGrid; X, Y: Longint): Boolean; begin Result := False; try More >
[ Delphi ] – Undo in memo fields
May 4th
Memo1.Perform(EM_UNDO, 0, 0); ButtonUndo.Enabled := Memo1.Perform(EM_CANUNDO, 0, 0); More >
[ Delphi ] – Delete all selected items of a Listbox
May 4th
procedure TForm1.Button1Click(Sender: TObject); var i: integer; begin for i := ListBox1.Items.Count - 1 downto 0 do More >

