From: rwahler@user1.IS.NET (Robert Wahler) Subject: Re: Delphi TEdit: How do I stop it beeping? Date: 28 Jun 1995 20:59:19 GMT I got around it this way: Set KeyPreview := True for the form and capture the enter key in the OnKeyPress form event, if the sender is the editbox, you now can process the return and change it to something else like null before the editbox sees it. Hope this helps, Robert Wahler rwahler@is.net