Mega Code Archive

 
Categories / Delphi / Multimedia
 

How to play system sounds

unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, mmsystem; type TForm1 = class(TForm) Button1: TButton; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} procedure PlayWinSound(SoundKeyName: string); begin PlaySound(PChar(SoundKeyName), 0, SND_APPLICATION or SND_NODEFAULT or SND_ASYNC or SND_NOWAIT); end; procedure TForm1.Button1Click(Sender: TObject); begin PlayWinSound('SystemStart'); { Here is a list of some system sounds SystemStart SystemQuestion SystemHand SystemExclamation SystemExit } end; end.