whats new ¦  programming tips ¦  indy articles ¦  intraweb articles ¦  informations ¦  links ¦  interviews
 misc ¦  tutorials ¦  Add&Win Game

Tips (1541)

Database (90)
Files (137)
Forms (107)
Graphic (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Math (76)
Misc (126)
Multimedia (45)
Objects/
ActiveX (51)

OpenTools API (3)
Printing (35)
Strings (83)
System (266)
VCL (242)

Top15

Tips sort by
component


Search Tip

Add new Tip

Add&Win Game

Advertising

33 Visitors Online


 
...play a sound file without using TMediaPlayer?
Autor: Sven van Pletzen
[ Print tip ]  

Tip Rating (12):  
     


uses
  
MMSystem;

procedure TForm1.Button1.Click;
begin
  
PlaySound('c:\Doggie.wav', 0, SND_FILENAME + SND_ASYNC);
end;


{

  Different modes:
  Verschiedene modi:

 SND_ASYNC : Start playing, and don't wait to return
             Sound wird im Hintergrund abgespielt.

 SND_SYNC  : Start playing, and wait for the sound to finish
             Das Programm fährt erst dann fort, wenn der
             Sound fertig abgespielt worden ist. }

// SND_LOOP:

PlaySound('BELLS.WAV', 0, SND_LOOP + SND_ASYNC);


{Keep looping the sound until another sound is played or
PlaySound(nil, 0, 0) is called. }

{Der Sound läuft in einer Schleife so lange, bis
PlaySound(nil, 0, 0) kommt oder eine neue Datei abgespielt wird.}

 

Rate this tip:

poor
very good


Copyright © by SwissDelphiCenter.ch
All trademarks are the sole property of their respective owners