I'm trying to make the progress bar show the current progress but for some reason the progress bar is just shown there and nothing is happening. I'm using the following code
Private Sub BuildApp_ProgressChanged(sender As Object, e As ProgressChangedEventArgs) Handles BuildApp.ProgressChanged
Me.ProgressBar1.Value = e.ProgressPercentage
End Sub
I checked if the background worker's property is set to report status and it is set to "Yes". Also, I checked the progress bar's style, it's set to Blocks. Any help?