Ir al contenido


Foto

[TRUCO DELPHI] Prevenir CTRL+DELETE en DBGrid.


  • Por favor identifícate para responder
No hay respuestas en este tema

#1 sir.dev.a.lot

sir.dev.a.lot

    Advanced Member

  • Miembros
  • PipPipPip
  • 545 mensajes
  • Location127.0.0.1

Escrito 29 agosto 2016 - 08:19

[TRUCO DELPHI] Prevenir CTRL+DELETE en DBGrid.


delphi
  1. procedure Form1.DBGrid1KeyDown
  2. (Sender: TObject; var Key: Word; Shift:TShiftState);
  3. begin
  4. if (Shift = [ssCtrl]) and (Key = VK_DELETE) then
  5. Key := 0; {ignorar}
  6. end;

Saludos!


  • 2




IP.Board spam blocked by CleanTalk.