Thema: Delphi Rhytmus

Einzelnen Beitrag anzeigen

Benutzerbild von Nikolas
Nikolas

Registriert seit: 28. Jul 2003
1.528 Beiträge
 
Delphi 2005 Personal
 
#13

Re: Rhytmus

  Alt 24. Feb 2005, 18:00
kleiner Tip für die Lesbarkeit:

Delphi-Quellcode:
x:=x+1;
panel1.caption:=inttostr(x);
If panel1.caption= '1then
PlaySound('\1.wav',0,snd_Async);
If panel1.caption='2then
PlaySound('\2.wav',0,snd_Async);
If panel1.caption='3then
PlaySound('\3.wav',0,snd_Async);
If panel1.caption='4then
PlaySound('\4.wav',0,snd_Async);
If panel1.caption='5then
PlaySound('\5.wav',0,snd_Async);

-->
// str: string;

inc(x);
pane11.caption:= inttostr(x);
str:='\'+inttostr(x)+'.wav'
Playsound(str,0,snd_Async);
Erwarte das Beste und bereite dich auf das Schlimmste vor.
  Mit Zitat antworten Zitat