Sep 12, 2009 #1 X xKNiiVES Enthusiast Messages 590 Reaction score 88 Add a button, checkbox, anything you want. Now double click your button, checkbox, etc, and add Code: Beep() This is good for things like PC games if your making a trainer.
Add a button, checkbox, anything you want. Now double click your button, checkbox, etc, and add Code: Beep() This is good for things like PC games if your making a trainer.
Sep 12, 2009 #2 Ibdc VIP VIP Retired Messages 4,969 Reaction score 2,193 Re: How to make a soun in VB Or you can use Console.Beep() and you'll be able to control the frequency and the duration of the beep. Console.Beep(1000,3000) would be an example of how to make it annoying. (first number is frequency, second is duration in milliseconds)
Re: How to make a soun in VB Or you can use Console.Beep() and you'll be able to control the frequency and the duration of the beep. Console.Beep(1000,3000) would be an example of how to make it annoying. (first number is frequency, second is duration in milliseconds)