HS Banner
Back
Show Percentage

Author: Guitarman 03/27/2021
Language: Visual Basic .NET
Views: 245
Tags:


Description:

Show percentage for a progress bar.

Article:

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 & "%"



Back
Comments
Add Comment
There are no comments yet.