CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: beep frequency

  1. #1

    beep frequency

    does anybody know
    how to change speaker-beep frequency?
    thanks


  2. #2
    Join Date
    May 1999
    Posts
    4

    Re: beep frequency

    You can produce a beep programmatically by calling the Win32 function : "Beep" (see below).

    This only work fine on Windows NT.

    I don't know any way to modify the default beep.


    BOOL Beep(
    DWORD dwFreq, // sound frequency, in hertz
    DWORD dwDuration // sound duration, in milliseconds
    );





    --
    Gaetan Frenoy (aka Gaff)

  3. #3

    Re: beep frequency

    sorry
    i thinking about system beep frequency


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured