---
title: "ProgressBar Control in VB.Net"  
description: "Progress Bar Control is used to display the progress of a task.  Drag and drop ProgressBar Control from toolbox on the window Form. By default maximum"  
author: "Pushpendra Singh"  
published: 2010-12-13  
updated: 2020-03-04  
canonical: https://www.mindstick.com/articles/313/progressbar-control-in-vb-dot-net  
category: "vb.net"  
tags: ["vb.net"]  
reading_time: 1 minute  

---

# ProgressBar Control in VB.Net

[Progress Bar](https://www.mindstick.com/articles/12747/android-progress-bar) [Control](https://yourviews.mindstick.com/view/83439/bipartisan-gun-control-bill-passed-in-us-after-decades) is used to display the progress of a task.\

[Drag and drop](https://www.mindstick.com/forum/454/how-to-drag-and-drop-multiple-image-from-one-canvas-to-onther-canvas-in-html5) ProgressBar Control from toolbox on the [window Form](https://www.mindstick.com/forum/527/how-to-pass-datagridview-s-cells-value-to-another-window-form). By [default](https://www.mindstick.com/interview/12771/what-is-the-importance-of-default-resources) [maximum value](https://answers.mindstick.com/qa/38240/according-to-recent-rbi-directives-to-banks-how-many-pieces-of-soiled-currency-notes-with-a-maximum-value-of-rs-5-000-can-be-exchanged-at-banks-free-of-charge) of ProgressBar is set 100 and minimum value is set 0 and this value can be changed.

![ProgressBar Control in VB.Net](https://www.mindstick.com/mindstickarticle/4ef8abde-3ff2-4817-8398-e5d151d3557f/images/e49eb60a-d89c-4306-a6b5-dd9ab4a0c22d.png)

## Code:

```
Public Class Form14  Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click      'Progressbar will show progress bteween max and min value      While ProgressBar1.Value < 100      ProgressBar1.Value += 5 'progressbar value will increment 5 in each step      End While End Sub  End Class
```

## Run the project

![ProgressBar Control in VB.Net](https://www.mindstick.com/mindstickarticle/4ef8abde-3ff2-4817-8398-e5d151d3557f/images/6e56f9ef-066b-46ae-b57e-c2a3b5cb815f.png)

When you click StartTime [button](https://www.mindstick.com/articles/63/how-to-add-button-in-datagridview-in-csharp-dot-net) then ProgressBar will start.

![ProgressBar Control in VB.Net](https://www.mindstick.com/mindstickarticle/4ef8abde-3ff2-4817-8398-e5d151d3557f/images/c66822e8-7dc3-439d-b563-427b23aab885.png)

---

Original Source: https://www.mindstick.com/articles/313/progressbar-control-in-vb-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
