Ver Mensaje Individual
  #2  
Antiguo 18-04-2005
Avatar de JavierB
JavierB JavierB is offline
Miembro
 
Registrado: may 2003
Ubicación: Madrid
Posts: 99
Reputación: 22
JavierB Va por buen camino
Hola gryphus

Puedes usar el evento OnKeyPress:
Código Delphi [-]
procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
begin
  if Key='+' then
  begin
    Key:=#0;
    Perform(CM_DialogKey,VK_TAB,0);
  end
end;
Saludos, :adios:
__________________
Lo importante no es saber, sino tener el e-mail del que sabe.
Responder Con Cita