Volume control for Media soundplayer

  • Thread starter Thread starter Yohamich
  • Start date Start date
Y

Yohamich

Guest
I have aprogram that plays sound. I use

public void ReadAlphabet()
{
System.Media.SoundPlayer player = new System.Media.SoundPlayer();
player.SoundLocation = wsk.Alphabet;
player.Load();
player.Play();
}

I designed a subroutine that accepts values (that regulate the volume) from

the screen. However, I have problem to understand the element

of Mediaplayer that accepts these values.

Is there any body who can help !

Continue reading...
 
Back
Top