Ver Mensaje Individual
  #3  
Antiguo 05-11-2008
Avatar de richy08
richy08 richy08 is offline
Miembro
 
Registrado: may 2007
Ubicación: Bucerias, Nayarit Mexico
Posts: 529
Reputación: 18
richy08 Va por buen camino
gracias dec por responder utilizo este codigo para versi reacciona los eventos con las teclas pero no hace nada

Código Delphi [-]
procedure TFrm_GraRes.FormKeyPress(Sender: TObject; var Key: Char);
begin
  if key=char(37) then
  begin
     showmessage('37');
  end;

  if key=char(38) then
  begin
           showmessage('38');
  end;

  if key=char(39) then
  begin
          showmessage('39');
  end;

  if key=char(40) then
  begin
      showmessage('40');
  end;
end;
Responder Con Cita