Tema: Edit
Ver Mensaje Individual
  #2  
Antiguo 17-06-2006
galmacland galmacland is offline
Miembro
 
Registrado: nov 2004
Posts: 48
Reputación: 0
galmacland Va por buen camino
Talking aqui tienes

la utiliza la propiedad del edit setfocus en el evento onkeypress del edit al que te refieres.

Código Delphi [-]
procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
begin
if key=#13 then
edit2.setfocus;
end;

espero te sirva...
Responder Con Cita