Beep Duration
-
I am having trouble working out how i can make a beep occur for a given duration of time. I have the following event handler that will recieve the beep duration and execute it for that amount of time. Lots of articles talk of beeping for intervals but have not found a way to make a continuous beep.
void VMCU_Beep(int BeepDurationInSeconds)
{}
Does anyone know how this can be done Thanx George
-
I am having trouble working out how i can make a beep occur for a given duration of time. I have the following event handler that will recieve the beep duration and execute it for that amount of time. Lots of articles talk of beeping for intervals but have not found a way to make a continuous beep.
void VMCU_Beep(int BeepDurationInSeconds)
{}
Does anyone know how this can be done Thanx George
Use
System.Console.Beep(frequency, duration)
Panic, Chaos, Destruction. My work here is done.
-
Use
System.Console.Beep(frequency, duration)
Panic, Chaos, Destruction. My work here is done.
-
I am having trouble working out how i can make a beep occur for a given duration of time. I have the following event handler that will recieve the beep duration and execute it for that amount of time. Lots of articles talk of beeping for intervals but have not found a way to make a continuous beep.
void VMCU_Beep(int BeepDurationInSeconds)
{}
Does anyone know how this can be done Thanx George
gwithey wrote:
a continuous beep
trying to keep the mosquitoes away? :laugh:
Luc Pattyn [Forum Guidelines] [My Articles]
The quality and detail of your question reflects on the effectiveness of the help you are likely to get. Show formatted code inside PRE tags, and give clear symptoms when describing a problem.