Windows with Delphi Windows API (94) Windows Filesystem (41) Windows Forms (69) Windows Graphics (38)
Exchange Links About this site Links to us 
|
Play WAV files
This article has not been rated yet. After reading, feel free to leave comments and rate it.
You can use the mci commands (easy using the mciSendString() routine) or - even easier, this:
 | |  | |
uses
MMSystem;
var
s: array[0..79] of char;
begin
StrCopy(s, 'ding.wav');
sndPlaySound(s, 0);
end; | |  | |  |
Comments:
|
|
|
|
Great help thanks.
|
|
|
|
|
klappt du wischer
|
|