Ver Mensaje Individual
  #2  
Antiguo 21-03-2012
MartinS MartinS is offline
Miembro
NULL
 
Registrado: nov 2011
Ubicación: Villa Cacique - Argentina
Posts: 283
Reputación: 13
MartinS Va por buen camino
Hola: y si pones asi en el evento onkeypress te sirve??

Código Delphi [-]
procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
begin
    if Key = #43 then
      ShowMessage('Signo Mas') else
      ShowMessage('Otra Tecla');
end;
Responder Con Cita