Ver Mensaje Individual
  #2  
Antiguo 25-06-2012
edgar_prospero edgar_prospero is offline
Miembro
NULL
 
Registrado: mar 2012
Posts: 202
Reputación: 13
edgar_prospero Va por buen camino
para dar el foco lo hago de la siguiente manera

Código Delphi [-]
procedure TForm1.inicialKeyPress(Sender: TObject; var Key: Char);
begin
 if Key = #13 then
  begin
    Key := #0;
    Perform(WM_NEXTDLGCTL, 0, 0);
  end
end;
Responder Con Cita