Basic progress bar timing question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • kimiraikkonen

    #1

    Basic progress bar timing question

    Hello,
    I want to ask this: How can i equalise my progress bar with the
    external process until it finishes?

    For example i have external process and the processing time differs
    computer by computer. What should be the code to equalise progress bar
    movement with the process?

    Thanks.

  • Armin Zingler

    #2
    Re: Basic progress bar timing question

    "kimiraikko nen" <kimiraikkonen8 5@gmail.comschr ieb
    Hello,
    I want to ask this: How can i equalise my progress bar with the
    external process until it finishes?
    >
    For example i have external process and the processing time differs
    computer by computer. What should be the code to equalise progress
    bar movement with the process?
    How do you retrieve the progress information?

    If you show the progress on one computer, I wouldn't care about the times on
    other computers. With more background information it is easier to evaluate.


    Armin

    Comment

    • Phillip Taylor

      #3
      Re: Basic progress bar timing question

      On Oct 5, 10:06 am, kimiraikkonen <kimiraikkone.. .@gmail.comwrot e:
      Hello,
      I want to ask this: How can i equalise my progress bar with the
      external process until it finishes?
      >
      For example i have external process and the processing time differs
      computer by computer. What should be the code to equalise progress bar
      movement with the process?
      >
      Thanks.
      does this external process produce any information that can help? does
      it put any output to standard that you could use to gauge as an
      indicator?

      Comment

      • Miro

        #4
        Re: Basic progress bar timing question

        kimiraikkonen wrote:
        Hello,
        I want to ask this: How can i equalise my progress bar with the
        external process until it finishes?
        >
        For example i have external process and the processing time differs
        computer by computer. What should be the code to equalise progress bar
        movement with the process?
        >
        Thanks.
        >
        You can always do what microsoft does.... :-)
        Have a progress bar that slowly increments, and if it reaches the end,
        it starts at the beginning again.

        Its more of letting people know something is running so they dont get
        ansi. Stop the progress bar when your function / sub is done.

        M.

        Comment

        • kimiraikkonen

          #5
          Re: Basic progress bar timing question

          The external app has console-based and it has built-in progress
          indicator but i want to hide it and use my own progress bar... I
          wonder how to manipulate a progess bar having increasing blocks with a
          true ratio of external app's processing duration.

          Could you define a simple code for this?

          Comment

          Working...