Thema: Delphi Progressbar und TGauge

Einzelnen Beitrag anzeigen

Benutzerbild von himitsu
himitsu

Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.214 Beiträge
 
Delphi 12 Athens
 
#4

Re: Progressbar und TGauge

  Alt 3. Nov 2003, 19:30
@Spider

Delphi-Quellcode:
ProgressBar1.Position := ProgressBar1.Position + 1;
{=}
Progressbar1.StepBy(1);

ProgressBar1.Position := ProgressBar1.Position + Progressbar1.Step;
{=}
Gauge1.StepIt;

Gauge1.Progress := Gauge1.Progress + 1;
{=}
Gauge1.AddProgress(1);
$2B or not $2B
  Mit Zitat antworten Zitat