1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00
QB64-website/wiki/BEEP.md
2022-12-24 19:12:43 -06:00

831 B

The BEEP statement produces a beep sound through the sound card.

Syntax

BEEP

Description

  • BEEP can be placed anywhere to alert the user that there is something to do or an error has occurred.
  • QB64 produces the actual "beep" sound through the PC's sound card, to emulate QBasic's beeping through the PC speaker.

QBasic

  • Older programs may attempt to produce a BEEP by printing CHR$(7) to the screen. This is no longer supported in QB64 after version 1.000.
  • You may have to replace instances of PRINT CHR$(7) in older programs to the BEEP statement to maintain the legacy functionality.

See Also