![]() |
EditFeld - RETURNTASTE - Windows Sound ?
Hi,
jedesmal wenn ich in einem LabeledEdit-Feld "RETURN" drücke, soll mein EingabeCursor in ein anderes Eingabe-Feld springen. Das klappt auch, :?: leider wird dabei jedesmal so ein Windows-Sound abgespielt. :wall: Wie kann ich den im Programm deaktivieren ????????
Delphi-Quellcode:
procedure TOKBottomDlg.LE_f1KeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState); begin // Abbrechen, falls Feld "F1:" leer ist if (length (LE_f1.Text) = 0) then begin LE_f1.SetFocus; exit; end; if (char(key) = char ($0D)) then begin BitBtn1Click(Self); LE_f2.Text := ''; LE_f1.Text := ''; LE_f2.SetFocus; end; end; devnull |
Re: EditFeld - RETURNTASTE - Windows Sound ?
|
Re: EditFeld - RETURNTASTE - Windows Sound ?
Danke das wars. Hab wohl nach den falschen Schlüsselwörtern gesucht :stupid:
Irgenwie kommts mir so vor, dass manche da trotzdem noch größere Probs hatten !!! devnull |
Alle Zeitangaben in WEZ +1. Es ist jetzt 02:10 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz