-
Why can't I just make my program beep with the normal beep command? I did a search on the forum for help but most places lead me to a win95io.dll or some control like that...........If the beep command doesn't actually let your PC Speaker beep then what is that commands use for?
-
The Beep is is a WAV file, which is the default system sound.
Code:
Private Sub Command1_Click()
Beep
End Sub
-
Weird
I get no sound at all? Oh well, the cpu's im created this program for doesnt have sound cards so doesnt matter, thanks anyways!
-
Since it's a WAV file, you need a Sound Card and you also must make sure that your Speakers are on.
-
lol
Damn, mega give me some credit I at least know my file extensions...... Just little slow on the programming side but im learning!
-