Thema: Delphi Problem mit case of

Einzelnen Beitrag anzeigen

Benutzerbild von APP
APP

Registriert seit: 24. Feb 2003
Ort: Graz (A)
705 Beiträge
 
Delphi 7 Enterprise
 
#4

Re: Problem mit case of

  Alt 27. Feb 2004, 17:12
Hallo rockycat,

kann es sein, dass Du in Deiner While -Schleife mit Edit1.Text noch was "anstellst"?

Delphi-Quellcode:
  WHILE zaehler1 <= max DO
    BEGIN
      CASE song[zaehler1] OF
        1:
          BEGIN
            sndPlaySound('1.wav', SND_ASYNC);
            Edit1.Text := 'Hallo!';
          END;


       // nämlich vielleicht genau hier?
       Edit1.Text :=''; // oder so was in der Art?
    END;
Armin P. Pressler

BEGIN
...real programmers are using C/C++ - smart developers Delphi;
END;
  Mit Zitat antworten Zitat