Connecting Tech Pros Worldwide Forums | Help | Site Map

Make a Beep

#Hai
Guest
 
Posts: n/a
#1: Nov 12 '05
Hi,
I want to throw out a series of 'beep..beep..beep' to the speaker. How to do
that ?
Thanks



Rajasi Saha
Guest
 
Posts: n/a
#2: Nov 12 '05

re: Make a Beep


Console.WriteLine("\a")

will give you one beep.

rajasi

" #Hai" <ReplyToGroup@Mail.com> wrote in message
news:#AgjpeEQDHA.3768@tk2msftngp13.phx.gbl...[color=blue]
> Hi,
> I want to throw out a series of 'beep..beep..beep' to the speaker. How to[/color]
do[color=blue]
> that ?
> Thanks
>
>[/color]


Michael Giagnocavo [MVP]
Guest
 
Posts: n/a
#3: Nov 12 '05

re: Make a Beep


You can also use P/Invoke to call Kernel32.dll!Beep.

It takes two arguments, the first one the frequency, and the second
one the duration and returns a bool for success.

Frequency must be from 37 to 32,767.

something like:

using System.Runtime.InteropServices;

public class whatever {
[DllImport("Kernel32.dll")]
public static extern bool Beep(UInt32 frequency, UInt32 duration);

public static void beepTime() {
Beep(1000, 300);
System.Threading.Thread.Sleep(300);
Beep(2000, 400);
System.Threading.Thread.Sleep(300);
Beep(500, 200);
System.Threading.Thread.Sleep(300);
}
}

-mike
MVP

" #Hai" <ReplyToGroup@Mail.com> wrote in message
news:%23AgjpeEQDHA.3768@tk2msftngp13.phx.gbl...[color=blue]
> Hi,
> I want to throw out a series of 'beep..beep..beep' to the speaker.[/color]
How to do[color=blue]
> that ?
> Thanks
>
>[/color]


Nicholas Paldino [.NET/C# MVP]
Guest
 
Posts: n/a
#4: Nov 12 '05

re: Make a Beep


Hai,

The best way to do this would be to add a reference to
Microsoft.VisualBasic.dll and to call the static Beep method on the
Microsoft.VisualBasic.Interaction class.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- nicholas.paldino@exisconsulting.com

" #Hai" <ReplyToGroup@Mail.com> wrote in message
news:%23AgjpeEQDHA.3768@tk2msftngp13.phx.gbl...[color=blue]
> Hi,
> I want to throw out a series of 'beep..beep..beep' to the speaker. How to[/color]
do[color=blue]
> that ?
> Thanks
>
>[/color]


Closed Thread


Similar .NET Framework bytes