SmartPascal
Beep
Procedure
Make a beep sound SysUtils unit
 procedure Beep ;
Description
The Beep procedure creates a very short and quiet sound through the internal speaker of your PC. It is used as an indication that the user has done something wrong.
 
Example code : Very simple!
begin
  Beep;
end;
Show full unit code