BEEP

4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next

version 3


BEEP

ParameterTypeDescription
This command does not require any parameters

Description

The BEEP command causes the PC or Macintosh to generate a beep. Your computer (on Windows or Macintosh) can emit a sound other than a beep, depending on the sound chosen in the Sound control panel.

Warning: Do not call BEEP from within a Web connection process, because the beep will be produced on the 4th Dimension Web server machine and not on the client Web browser machine.

Example

In the following example, if no records are found by the query, a beep is emitted and an alert is displayed:

   QUERY([Customers];[Customers]Name=$vsNameToLookFor)
   If (Records in selection([Customers])=0)
      BEEP
      ALERT("There is no Customer with such a name.")
   End if

See Also

PLAY.


4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next