Einzelnen Beitrag anzeigen

Benutzerbild von turboPASCAL
turboPASCAL

Registriert seit: 8. Mai 2005
Ort: Sondershausen
4.274 Beiträge
 
Delphi 6 Personal
 
#42

Re: Bass Player Komponente: TBassDLLPlayer (+ Demos)

  Alt 21. Sep 2005, 06:41
TPlayerStatus = (sndStopped, sndPlaying, sndStalled, sndPaused, sndNotLoaded);
Delphi-Quellcode:
if BassdllPlayer1.Status in [sndStopped, sndStalled, sndPaused, sndNotLoaded] then;

if BassdllPlayer1.Status in [sndStopped, sndStalled] then;

if BassdllPlayer1.Status in [sndNotLoaded] then;

if BassdllPlayer1.Status in [sndPaused] then;

if BassdllPlayer1.Status in [sndPlaying] then;

// oder auch:
if BassdllPlayer1.Status = sndPlaying then;
Matti
Meine Software-Projekte - Homepage - Grüße vom Rüsselmops -Mops Mopser
  Mit Zitat antworten Zitat