Which functions are available within Delphi to play a sound-file?
|
|
Here's the fastest way:
|
||
|
|
|
|
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 |
||
|
|
|
|
With the function sndPlaySound from the WIN32-API (Unit MMSystem): sndPlaySound('C:\Windows\Media\Tada.wav', SND_ASYNC); |
||
|
|
|
|
A full tutorial is available at: http://sheepdogguides.com/dt3f.htm It is a bit old. But it should work. |
||
|
