vote up 0 vote down star

so here the logic

for 1%="|" in the TLabel and for one "|" we need 10 times looping

so to reach 100%= 100 times "|" we need 1000 times looping

can you help me with the code?

flag

3 Answers

vote up 5 vote down check

Perhaps you could use the StringOfChar function?

Something like this:


    procedure TForm1.Button1Click(Sender: TObject);
    var
      X: Integer;
      Total: Integer;
      Percent: Integer;
    begin
      Total := 1000;
      for X := 1 to Total do
      begin
        Sleep(100);
        Percent := (X * 100) div Total;
        Label1.Caption := StringOfChar('|', Percent) + IntToStr(Percent) + '%';
        Label1.Repaint;
      end;
    end;
link|flag
yup it IS excactly what i'm talking about!! you rocks!!! – Otip88 May 27 at 8:23
Make sure you only Repaint when necessary, as repaint is costly. Investigate if a test like "if X mod 10 = 0 then Label1.Repaint" would enhance performance. – Ralph Rickenbach May 27 at 9:49
vote up 1 vote down

And this is a variant o Bing solution, that show the percentage inside (middle) of the bar.

procedure TForm1.Button1Click(Sender: TObject);
var
  X: Integer;
  Total: Integer;
  Percent: Integer;
begin
  Total := 1000;
  for X := 1 to Total do begin
    Sleep(5);
    Percent := (X * 100) div Total;
    Label1.Caption := StringOfChar('|', Percent DIV 2) +
                      ' ' + IntToStr(Percent) + '% ' +
                      StringOfChar('|', Percent DIV 2);
    Label1.Repaint;

    Application.ProcessMessages;

  end;
end;

Excuse-me for my bad English. Regards.


Neftalí -Germán Estévez-

link|flag
vote up 3 vote down

I'm not 100% sure I get what you mean, but I think it's something like this (assume "label" is TLabel):

label.caption := '';

for i := 1 to 1000 do
begin
    ... do stuff ...
    if i mod 10 = 0 then 
    begin
        label.caption = label.caption + '|';
        label.repaint();
    end;
end;

I'm not sure about the repaint vs. refresh, and whether you should repaint/refresh the entire form, but that's up to you.

Hope that helps.

link|flag
yes, something like that. if i use a button to begin the process, how am i suppose to do? – Otip88 May 27 at 7:21
I decode yor code to begin label1.caption :=''; for i := 1 to 1000 do begin if i mod 10 = 0 then label1.caption := label1.caption + '|'; label1.repaint(); end; end; but it appear that the "|" shows to fast.. – Otip88 May 27 at 7:46
Go to the "OnClick" event of the button by double clicking the "OnClick" in the relevant pane. It appears fast probably because your processing is fast (good for you!)... If your whole process takes a second, the bars will appear fast. If you want them to appear slower you acn show a bar only once every 100 ("i mod 100 = 0"), then they will appear slower. – Rax Olgud May 27 at 7:54
it works!! one last thing how do I add percentage behind "|" start form 0% to 100% just like the real progress bar... – Otip88 May 27 at 7:59
To add the % sign: initialize label.caption := '%'; then in the loop add the '|' in front like label.caption := '|' + label.caption; – Ralph Rickenbach May 27 at 9:53
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.