I know there are a lot of threads with this same topic, but for a reason I don't understand yet, this is not working for me.
I have this project tree:

I embedded the alarm.wav to the .resx file from the Project->Properties->Resources menu.
I tried different combinations of code but nothing works.
At the moment this is the code I'm trying.
using System;
using System.Media;
using System.Windows.Forms;
using System.Threading;
using System.Globalization;
using System.ComponentModel;
using System.Resources;
using AlarmForm;
namespace Alarm
{
public partial class Form1 : Form
{
private bool estado = false;
private SoundPlayer sonido;
public Form1()
{
InitializeComponent();
ResourceManager resources = new ResourceManager(typeof(Form1));
sonido = new SoundPlayer(resources.GetStream("alarma"));
}
}
}
No error is displayed during the compilation or the runtime, but instead of the sound an error beep is heard.
Edited: Error I found trying to use Alarm.Properties
var sound = resources.GetStream("alarma");. If that fails, the exception that it throws might shed some light on the subject. – Jim Mischel Nov 2 '12 at 0:53