Epi Info™ User Guide

Command Reference


Check Commands: Beep

Description
This command causes the computer to generate a beep sound. It is often used to emphasize a customized message or warning dialog during data entry.

Syntax
BEEP

Comments
Command must be typed into the Program Editor since it is not available using the Command Tree.

Example
The computer beeps and gives a message when invalid data is detected.  This code should appear in the AFTER section of the Age field.

Field Age
   After
      IF Age > 5 THEN 	
         BEEP
         DIALOG "Do not include records for children over 5." 
      END-IF
   End-After
End-Field
Page last reviewed: September 16, 2022, 12:00 pm