22 de abril de 2009

VSTO (Access) - Como tocar um ficheiro WAV?

public string PlayWAVFile(string myPath)
{
try
{
using (SoundPlayer objPlayer = new SoundPlayer { SoundLocation = myPath })
{
objPlayer.Play();
return "Ok";
}
}
catch (Exception)
{
throw;
}
}

Sem comentários:

Enviar um comentário

Like