Skip to content
Nicolas Bats edited this page Jun 22, 2020 · 2 revisions

They are 2 common patterns when to use a progress bar. Both are available as snippets in the LabVIEW palette.

Fixed steps count

When you do known the total amount of steps and the current step you can display a precise progression to the user. This case is typical when the process is located in a for loop.

For loop example

Unknown steps count

When you don't know the process total count of steps you have to provide an arbitrary progression value. This case is typical when the process is located in a while loop.

While loop example

Clone this wiki locally