H Hai Ly Hoang Feb 8, 2004 #1 Hi, I want to make a beep (like MS-DOS beep, not a beep from sound-card). How to do that ? Thanks
A Aravind C Feb 9, 2004 #2 Hi Hoang, Maybe you could try to do a PInvoke to the Beep() API in kernel32.dll. [DllImport("kernel32.dll")] public static extern bool Beep(Int32 freq, Int32 duration); Regards, Aravind C
Hi Hoang, Maybe you could try to do a PInvoke to the Beep() API in kernel32.dll. [DllImport("kernel32.dll")] public static extern bool Beep(Int32 freq, Int32 duration); Regards, Aravind C