D dojah New Member Joined Jan 20, 2010 Messages 12 Reaction score 0 Aug 11, 2010 #1 What with CC's and all there is no issue on the HB side of things, just curious if anyone has figured any way to get GB to throw an internal speeker beep out there?
What with CC's and all there is no issue on the HB side of things, just curious if anyone has figured any way to get GB to throw an internal speeker beep out there?
kuchr3 New Member Joined Jan 15, 2010 Messages 70 Reaction score 6 Aug 11, 2010 #2 EDIT: just noticed you're talking about GB forget the post below... sure it's possible PHP: using System.Media; SystemSounds.Beep.Play(); //or SystemSounds.Asterisk.Play(); //or SystemSounds.Exclamation.Play(); //or SystemSounds.Hand.Play(); //or SystemSounds.Question.Play(); u can choose which one u like, this is not tested in hb but should work Last edited: Aug 11, 2010
EDIT: just noticed you're talking about GB forget the post below... sure it's possible PHP: using System.Media; SystemSounds.Beep.Play(); //or SystemSounds.Asterisk.Play(); //or SystemSounds.Exclamation.Play(); //or SystemSounds.Hand.Play(); //or SystemSounds.Question.Play(); u can choose which one u like, this is not tested in hb but should work
MaiN Well-Known Member Joined Jan 15, 2010 Messages 1,017 Reaction score 35 Aug 11, 2010 #3 Code: int frequency = 440; int duration = 1000; Console.Beep(frequency, duration);