Skip to main content

Beep statement

Table of contents
  1. Syntax
  2. Remarks
  3. Example

Sounds a tone through the computer's speaker.

Syntax

Beep

Remarks

The frequency and duration of the beep depend on your hardware and system software, and vary among computers.

Example

This example uses the Beep statement to sound three consecutive tones through the computer's speaker.

Dim I
For I = 1 To 3 ' Loop 3 times.
    Beep ' Sound a tone.
Next I

Leave a comment

Your email address will not be published. Required fields are marked *

Format your code: <pre><code class="language-vba">place your code here</code></pre>