Whenever trigger a messagebox used in my C# program I get a very annoying beep from my computer. How do I disable this beep using C# code.
The code I am using is ve
From the searching I've done it looks like the beep is hardwired into the Win32 message box function:
So you need to either write your own method or stop the beep in the hardware. The former will work for everyone, the latter just for you.