Ver Mensaje Individual
  #2  
Antiguo 15-10-2004
darkpale darkpale is offline
Registrado
 
Registrado: jul 2004
Ubicación: Guadalajara Jalisco
Posts: 3
Reputación: 0
darkpale Va por buen camino
Hola no te funciona mejor esto?

Código Delphi [-]
procedure TForm1.Edit10KeyPress(Sender: TObject; var Key: Char);
var
tx:char;
begin
tx:=char(key);
if tx in ['0'..'9'] then
  key:=#0;
end;
Responder Con Cita