vote up 6 vote down star

Is there a way to trigger a beep/alarm/sound when my breakpoint is hit? I'm using Visual Studio 2005/2008.

flag

80% accept rate
Could you please elaborate on why you need this? I do not think such a "alarm"-feature exists, but if you provide us with your scenario on why you need this, we could maybe give you another solution. – Espo Sep 17 '08 at 6:39
I test my code on a PC in an adjacent cube and it takes a while before my debugging breakpoint is hit. So, while I'm at my own PC I would like to know when my breakpoint is hit. A short audible alarm or even a beep would be enough for this. – Ashwin Sep 17 '08 at 6:42

3 Answers

vote up 16 vote down check

WinXP

Control Panel -> Sounds and Audio... -> Program Events - Microsoft Developer -> Breakpoint Hit

Win7

Control Panel -> All Control Panel Items -> Sounds -> Sounds (tab) - Microsoft Visual Studio -> Breakpoint Hit

link|flag
I used to have the "Build Failure" sound set to Tom Hanks' "Houston we have a problem". Yeah, stupid I know, but it was successful at annoying my coworkers. :) – Steve Fallows Nov 19 '08 at 17:36
vote up 1 vote down

You can create a macro that runs in response to a breakpoint firing. In your macro, you could do whatever it takes to make a beeping noise.

link|flag
vote up 4 vote down

Yes, you can do it with a Macro assigned to a breakpoint. This works in VS 2005, I assume 2008 will work as well. I assume you don't want a sound on EVERY breakpoint, or the other answer will work fine. There is probably a way to play a specific sound, but I didn't dig that hard. Here are the basic steps:

Add A New Macro Module (steps below the code)

Imports System.Runtime.InteropServices
Public Module Beeps
    Public Sub WindowsBeep()
        Interaction.Beep()
    End Sub
    Public Sub ForceBeep()
        Beep(900, 300)
    End Sub
    <DllImport("Kernel32.dll")> _
    Private Function Beep(ByVal frequency As UInt32, ByVal duration As UInt32) As Boolean
    End Function
End Module
  1. Tools => Macros => Macros IDE
  2. My Macros (In Project Explorer) => Add New Module => Name: "Beeps"
  3. Copy the above code in. It has 2 methods
    1. First one uses the windows "Beep" sound
    2. Second one forces a "Beep" tone, not a .wav file. This works with all sounds disabled (eg Control Panel -> Sounds -> Sound Scheme: No Sounds), but sounds ugly.
  4. View the Macro Explorer in VS.Net (not the macro IDE) to make sure it is there :)

Assign To A Breakpoint

  1. Add a break point to a line
  2. Right click on the little red dot
  3. Select "When Hit"
  4. Check the box to enable macros
  5. Select your macro from the pulldown
  6. Uncheck "continue execution" if you want to stop. It is checked by default.

Also, there are ways to play an arbitrary wav file, but that seems excessive for an alert. Perhaps the forced "beep" is the best, since that at least sounds different than Ding.

link|flag
NOTE: Unfortunately the "Run a macro" checkbox is unavailable on the Express Edition of MSVC++2005 and MSVC++2008. – j_random_hacker Jan 16 '09 at 14:13
I chose Nescio's answer for its simplicity. But, yours is very cool too and will be applicable when I do not want alarm on every breakpoint. – Ashwin Sep 8 at 3:15
Quick and dirty often wins the day. – Andrew Sep 8 at 17:20

Your Answer

Get an OpenID
or

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