| **Navigation:**  [[introduction.htm|Language Reference]] > 13 - Built-in Functions >====== BEEP (sound tone on speaker) ====== | [[band return bitwise and .htm|{{btn_prev_n.gif|Previous page}}]][[introduction.htm|{{btn_home_n.gif|Return to chapter overview}}]][[blank erase graphics .htm|{{btn_next_n.gif|Next page}}]] | | || **BEEP( **[//sound//] **)** {{blk2blue.jpg|blk2blue.jpg}} | **BEEP** | Generates a sound through the system speaker. | | //sound// | A numeric constant, variable, expression, or EQUATE for the Windows sound to issue. | The **BEEP** statement generates a sound through the system speaker. These are standard Windows sounds available through the [sounds] section of the WIN.INI file. Standard EQUATE values similar to these are listed in the [[commonly used equates.htm#beepequates|EQUATES.CLW]] file: | | BEEP:SystemDefault | | | BEEP:SystemHand | | | BEEP:SystemQuestion | | | BEEP:SystemExclamation | | | BEEP:SystemAsterisk | **Example:** **IF ERRORCODE()             !If unexpected error** ** ****BEEP****(BEEP:SystemDefault)  !sound a standard beep** ** STOP(ERROR())             !stop for the error** **END    **