|
Play wav sound from a resource file
The problem is not so difficult. You should include {$R MySoundRes.RES} line to the implementation section. And for playing wav sound you must use the PlaySound procedure.
There is a 'SOUND' section which contents a musical file in the resource file.
{$R MySoundRes.RES}
{$R *.DFM}
procedure TForm1.Button1Click(Sender: TObject);
begin
PlaySound('SOUND', 0, SND_RESOURCE);
end;
- Related topics
-
Load bitmap from resource DLL
Include jpeg as a resource in *.exe
Include font from from a resource file
- For more
-
Delphi Help
- Download source
|