Ver Mensaje Individual
  #3  
Antiguo 12-10-2006
Avatar de Lonidas
Lonidas Lonidas is offline
Miembro
 
Registrado: abr 2006
Posts: 35
Reputación: 0
Lonidas Va por buen camino
también puedes negar que use un botón para que no haga la combinación de control+del

Código Delphi [-]
procedure TForm1.DBGrid1KeyDown(Sender: TObject; var Key: Word;
  Shift: TShiftState);
begin
if (key=VK_CONTROL)then
showmessage('Accion Prohibida')
end;
Responder Con Cita