Исключить звуковой сигнал в поле ввода
Оформил: DeeCo
Автор: http://www.swissdelphicenter.ch
// Either disable the Beep in the OnKeyPress handler:
// Unterdrucke den Beep-Ton entweder im OnKeyPress Ereignis:
procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char);
begin
if key = #13 then // #13 = Return
begin
key := #0;
// Code...
end;
end;
// Or in the OnKeyDown-Handler:
// Oder im OnKeyDown Ereignis:
procedure TForm1.Edit1KeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
var
Mgs: TMsg;
begin
if Key = VK_RETURN then
PeekMessage(Mgs, 0, WM_CHAR, WM_CHAR, PM_REMOVE);
end;
|