vote up 7 vote down star
2

Which functions are available within Delphi to play a sound-file?

flag

69% accept rate

4 Answers

vote up 12 vote down check

Here's the fastest way:

uses MMSystem;

procedure TForm1.Button1Click(Sender: TObject);
begin
  sndPlaySound('C:\Windows\Media\Tada.wav',
    SND_NODEFAULT Or SND_ASYNC Or SND_LOOP);
end;

procedure TForm1.Button2Click(Sender: TObject);
begin
  sndPlaySound(nil, 0); // Stops the sound
end;
link|flag
vote up 1 vote down

This page explains quite good how to use the function sndPlaySound and how to embed the wav-file as a resource: http://www.latiumsoftware.com/en/delphi/00024.php

link|flag
vote up 3 vote down

With the function sndPlaySound from the WIN32-API (Unit MMSystem):

sndPlaySound('C:\Windows\Media\Tada.wav', SND_ASYNC);

link|flag
vote up 1 vote down

A full tutorial is available at: http://sheepdogguides.com/dt3f.htm

It is a bit old. But it should work.

link|flag
Yup it still works in 2009. – Gamecat Oct 29 '08 at 13:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.