| |
| Prevent the TEdit component from beeping when invalid |
 |
How can I prevent the TEdit component from beeping when invalid keystrokes are entered?
Trap the KeyPress event for the keys you do not want, and set the key to #0 to prevent the beep.
Example:
procedure TForm .Edit KeyPress(Sender: TObject; var Key: Char);
begin
if ((UpCase(Key) < 'A') or
(UpCase(Key) > 'Z')) then
Key := #0;
end;
|
|
| Hits/month |
2,500,000+ |
Downloads (Since May 2000) |
7,393,709 |
| Total Files |
6,023 |
| Forum msgs |
7,670 |
| Articles/FAQs |
70+/900+ |
Top Selling Software at Amazon
|