was ist neu ¦  programmier tips ¦  indy artikel ¦  intraweb artikel ¦  informationen ¦  links ¦  interviews
 sonstiges ¦  tutorials ¦  Add&Win Gewinnspiel

Tips (1541)

Dateien (137)
Datenbanken (90)
Drucken (35)
Grafik (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Mathematik (76)
Multimedia (45)
Oberfläche (107)
Objekte/
ActiveX (51)

OpenTools API (3)
Sonstiges (126)
Strings (83)
System (266)
VCL (242)

Tips sortiert nach
Komponente


Tip suchen

Tip hinzufügen

Add&Win Gewinnspiel

Werbung

36 Visitors Online


 
...einen Sound ohne TMediaPlayer abspielen?
Autor: Sven van Pletzen
[ Tip ausdrucken ]  

Tip Bewertung (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.}

 

Bewerten Sie diesen Tipp:

dürftig
ausgezeichnet


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