Ver Mensaje Individual
  #6  
Antiguo 06-07-2007
darcan01 darcan01 is offline
Registrado
 
Registrado: jul 2007
Posts: 1
Reputación: 0
darcan01 Va por buen camino
Smile

procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
begin
If not (Key in ['A'..'Z','a'..'z',#8,#13,#32 ]) then key:=#0; //para que permitas el BackSpace y el Enter y el espaciador
end;
Responder Con Cita