|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
|
Announcements
Want a new Job?
Chapters
Services
Feature Zones
|
IntroductionThe tonysound.cs class gives you the ability to add Wav sound to your Windows forms. Simply include the tonysound.cs in your project folder. This is my first article, so please don't beat me up too bad. Including the code in your formAdd the tonysound.cs file to your project. Then at the top of the calling form, for example, using tonysound;
Once Sound.Play(stringOfFilename,PlaySoundFlags.selectaflaghere );
Note: You can pass as many flags as you want, but if you're playing a file then you need to do something like I have in my code: Sound.Play("sound.wav",PlaySoundFlags.SND_FILENAME);
The first parameter of Sound.Play(null,null);
NOTE: You must include either List of PlaySoundFlags and their use:SND_SYNC //plays the sound after the event for example a button being pushed
SND_ASYNC //play sound as soon as event happens
SND_NODEFAULT //don't play the default sound if the soundsource is not found
SND_LOOP //play the wav over and over
SND_NOSTOP //don't stop any currently playing sound
SND_NOWAIT //don't wait if the sound driver is busy
SND_RESOURCE //indicates you are using a wav from a resource
SND_FILENAME //indicates you are using a wav from a file source
These are changes to my previous post, thanks to the suggestions.
|
||||||||||||||||||||||