Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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:

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

Alarm.Properties Error

share|improve this question
May you please describe what are you trying to exactly do? :) – Picrofo EGY Nov 2 '12 at 0:51
The first thing you should do is split things up so you can see where it's failing. That is, 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
@PicrofoEGY I'm trying to embed a sound in a project to play it when the user do certain actions. – Memochipan Nov 2 '12 at 1:00
@Memochipan Thanks for providing the information. I've posted an answer :) – Picrofo EGY Nov 2 '12 at 1:00
1  
@PicrofoEGY you got it I had to use using AlarmForm.Properties; instead of using Alarm.Properties; Thak you very much. – Memochipan Nov 2 '12 at 1:23
show 3 more comments

1 Answer

up vote 2 down vote accepted

Why are you trying to use resources.GetStream() while you can link the file directly using Alarm.Properties? I believe that it'd be much easier. I see that you've also forgot to play the Sound file linked to sonido which represents a new SoundPlayer. Here's a simple example that shows how to use SoundPlayer

Example

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Resources;
using System.Media;
using AlarmForm.
using AlarmForm.Properties; //Required to call 'Resources' directly

namespace Alarm
{
    public partial class Form1 : Form
    {
        private bool estado = false;
        private SoundPlayer sonido;

        public Form1()
        {
            InitializeComponent();
            //ResourceManager resources = new ResourceManager(typeof(Form1)); //We do not actually need this
            sonido = new SoundPlayer(Resources.alarma); //Initialize a new SoundPlayer linked to our sound file (or Alarm.Properties.Resources.alarma if Alarm.Properties was not imported)
            sonido.Play(); //Required if you would like to play the file
        }
    }
}

Notice that: You may stop the SoundPlayer from playing anytime by doing sonido.Stop() since sonido which represents a new class of name SoundPlayer was defined under public partial class Form1: Form UNLESS if the void that is trying to call sonido is static.

Thanks,
I hope you find this helpful :)

share|improve this answer
I tried your code and others similar but I get an error that says something like the Properties namespace can't be found in the Alarm namespace. – Memochipan Nov 2 '12 at 1:09
@Memochipan Did you try to add using Alarm.Properties;? Based on the code you provided above, the name space of your application is Alarm. Have a great day :) – Picrofo EGY Nov 2 '12 at 1:10
Of course, that is the line that produces the error. Look the question I added an image. Thanks for your help. – Memochipan Nov 2 '12 at 1:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.