issue with SystemSounds and notifier Icon

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • sean.chapman@gmail.com

    issue with SystemSounds and notifier Icon

    I've got a portion of this program that has a timer setup. On the
    interval I am checking to see if some stuff is changed then want to
    play the exclamation sound until it has been noticed and acknowledged
    by the user.

    void flashTimer_Tick (object sender, EventArgs e)
    {
    if (pictureYes.Vis ible == true)
    {
    if (chkAlarm.Check ed)
    {
    System.Media.Sy stemSounds.Excl amation.Play();
    }
    FlashWindow(thi s.Handle, true);
    }
    }

    problem is, the sound doesn't play. I was also running into this with
    the showBubble with the notifier icon. Is there something special I
    need to do for this?

    I've tried making the call in a delegate and doing an invoke, also
    tried a begininvoke with no luck.
  • sean.chapman@gmail.com

    #2
    Re: issue with SystemSounds and notifier Icon

    On Nov 21, 1:22 pm, "sean.chap...@g mail.com" <sean.chap...@g mail.com>
    wrote:
    I've got a portion of this program that has a timer setup. On the
    interval I am checking to see if some stuff is changed then want to
    play the exclamation sound until it has been noticed and acknowledged
    by the user.
    >
            void flashTimer_Tick (object sender, EventArgs e)
            {
                if (pictureYes.Vis ible == true)
                {
                    if (chkAlarm.Check ed)
                    {
                        System.Media.Sy stemSounds.Excl amation.Play();
                    }
                    FlashWindow(thi s.Handle, true);
                }
            }
    >
    problem is, the sound doesn't play. I was also running into this with
    the showBubble with the notifier icon. Is there something special I
    need to do for this?
    >
    I've tried making the call in a delegate and doing an invoke, also
    tried a begininvoke with no luck.
    Nevermind the sound issue (didn't have a system sound specified in
    windows)
    The bubble is still an issue though. I'd step through and see the call
    to showballon.. but it would not come up.

    Comment

    Working...