' ********************************************************************************************
' Progress character string creation Process
' Ex :Application.StatusBar = "Processing ..." & GetProgressString(counter, Max) & "@" & param
' ********************************************************************************************
Public Function GetProgressString(current, max) As String
If current > max Then
MsgBox "<GetProgressString> Error : " & "current > max value NG", vbCritical, "Error Message"
Exit Function
End If
Dim progress As String
Dim rate As Long
' Calc %
rate = (current / max * 100) \ 10
' ■■■■■□□□□□
progress = String(rate, GetMsg(LANGUAGE_KBN, 6)) & String(10 - rate, GetMsg(LANGUAGE_KBN, 7))
GetProgressString = " " & progress & "[" & current & "/" & max & "]"
End Function
More than 3 years have passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme