Ir al contenido


Foto

[TRUCO DELPHI] Usar las teclas de Direccion para desplazarse entre Controles.


  • 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 31 agosto 2016 - 12:22

[TRUCO DELPHI] Usar las teclas de Direccion para desplazarse entre Controles.


delphi
  1. procedure TForm1.FormKeyDown(
  2. Sender : TObject;
  3. var Key: Word;
  4. Shift : TShiftState
  5. );
  6. var
  7. Direction : Integer;
  8. begin
  9. Direction := -1;
  10. case Key of
  11. VK_DOWN, VK_RETURN : Direction := 0; {Siguiente}
  12. VK_UP : Direction := 1; {Anterior}
  13. end;
  14. if Direction <> -1 then
  15. begin
  16. Perform(WM_NEXTDLGCTL, Direction, 0);
  17. Key := 0;
  18. end;
  19. end;

Saludos!


  • 3




IP.Board spam blocked by CleanTalk.