Author: Guitarman 03/27/2021
Language:
Visual Basic .NET
Tags:
Show percentage for a progress bar.
Here's one of the simplest was I've found to show the percentage of a progress bar value o to 100 in a textbox or label.
strString = CType(((L1 - Minimum) / (Maximum - Minimum) * 100), Double).ToString & "%"