Beep Statement

Plays a sound signal through computer's built-in speaker.

Syntax

Beep

Remarks

Frequency and lenght of the sound signal depends on computer hardware and software and vary with different computers. .

Example

In this example the Beep statement is used to play three sound signals through the speaker.

Dim I
For I = 1 To 3  ' The cycle repeats 3 times
	Beep    '  Play sound signal
Next I

 

See Also