Re: Removing BEEP's?
- Posted by "Cuny, David at DSS" <David.Cuny at DSS.CA.GOV> Jan 14, 2000
- 499 views
MiCkeY wrote: > Does anybody here know how can I remove this beep? Change the code to : if key=13 then -- change the focus setFocus(EAddress) -- prevent default processing returnValue( True ) end if Basically, Win32Lib allows you to take action, and then hands the control back to Windows to allow the program to continue with the default processing. You can prevent this by setting the returnValue to True. This informs Win32Lib that you've taken action, and *not* to perform any more processing. -- David Cuny