Ver Mensaje Individual
  #2  
Antiguo 03-11-2006
cecam cecam is offline
Miembro
 
Registrado: may 2006
Ubicación: Girona
Posts: 47
Reputación: 0
cecam Va por buen camino
EnterToTab

Usar (y no tirar:-) en el KeyPress del control:

Código:
procedure EnterToTab(Sender:TObject; var Key:char);
begin
   if (Key=#13) then
   begin
     if (Sender is TWinControl) then
     begin
        Key := #0;
        TWinControl(Sender).Perform(WM_NEXTDLGCTL, 0, 0);
     end;
   end;
end;
Saludos!!
Responder Con Cita