Thema: Delphi progress bar

Einzelnen Beitrag anzeigen

Benutzerbild von nailor
nailor

Registriert seit: 12. Dez 2002
Ort: Karlsruhe
1.989 Beiträge
 
#7
  Alt 14. Dez 2002, 16:25
Delphi-Quellcode:
progressbar1.max := 26;
progressbar1.position := 0;
for i := 0 to 25 do
   begin
   //hier deine schöne rechnung
   progressbar1.position := inc(progressbar1.position);
   end;
Showmessage('Puh! Ich armer PC hab alles gerechnet');
Michael N.
  Mit Zitat antworten Zitat